diff options
author | Bardur Arantsson <bardur@scientician.net> | 2012-06-09 19:47:10 +0200 |
---|---|---|
committer | Bardur Arantsson <bardur@scientician.net> | 2012-06-09 19:47:44 +0200 |
commit | d69d91b33a2e833e8b32baa29af22809ade406ba (patch) | |
tree | f7c2cbedb10da018471c230d483414f83cdfb8d7 /lib/core/player.lua | |
parent | ca63c6bf6fa6d72b93b53cc48d06cc69b3bebe9e (diff) |
Lua: Move "Far Reaching Attack" ability to C
Diffstat (limited to 'lib/core/player.lua')
-rw-r--r-- | lib/core/player.lua | 26 |
1 files changed, 0 insertions, 26 deletions
diff --git a/lib/core/player.lua b/lib/core/player.lua index cb1b5cab..f5c7c13b 100644 --- a/lib/core/player.lua +++ b/lib/core/player.lua @@ -56,32 +56,6 @@ function player.get_wild_coord() end ---- Mkeys - --- Create a new power -__mkey_fct = {} -function add_mkey(p) - local i - - assert(p.mkey, "No mkey mkey!") - assert(p.fct, "No mkeey fct!") - - __mkey_fct[p.mkey] = p.fct -end - -function __mkey_fct_activate(power) - if __mkey_fct[power] then - __mkey_fct[power]() - return TRUE - else - return FALSE - end -end - --- Register in the hook list -add_hook_script(HOOK_MKEY, "__mkey_fct_activate", "__mkey_fct_activate") - - -- Subraces function subrace(racem) return race_mod_info[racem + 1] |