diff options
Diffstat (limited to 'world/map/npc/magic/level3-necromancy.txt')
-rw-r--r-- | world/map/npc/magic/level3-necromancy.txt | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/world/map/npc/magic/level3-necromancy.txt b/world/map/npc/magic/level3-necromancy.txt index bd1f611c..66643d39 100644 --- a/world/map/npc/magic/level3-necromancy.txt +++ b/world/map/npc/magic/level3-necromancy.txt @@ -2,7 +2,7 @@ // author: gumi -|script|necromancy|32767 { - callfunc "magic_checks"; if(@failed) end; + if(call("magic_checks")) end; if (Sp < 50) end; if (getskilllv(.school) < .level) end; if (getskilllv(SKILL_MAGIC) < .level) end; @@ -47,7 +47,7 @@ L_Clean: OnInit: set .school, SKILL_MAGIC_DARK; set .invocation$, chr(MAGIC_SYMBOL) + "nevela"; // used in npcs that refer to this spell - callfunc "magic_register"; + void call("magic_register"); set .level, 3; set .exp_gain, 1; end; |