diff options
Diffstat (limited to 'world/map/npc/magic/level1-make-sulphur.txt')
-rw-r--r-- | world/map/npc/magic/level1-make-sulphur.txt | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/world/map/npc/magic/level1-make-sulphur.txt b/world/map/npc/magic/level1-make-sulphur.txt index 2d11e5f6..fe175265 100644 --- a/world/map/npc/magic/level1-make-sulphur.txt +++ b/world/map/npc/magic/level1-make-sulphur.txt @@ -1,6 +1,6 @@ -|script|make-sulphur|32767 { - callfunc "magic_checks"; if(@failed) end; // << I wish we had functions that could return >> + if(call("magic_checks")) end; // << I wish we had functions that could return >> if (Sp < 4) end; if (getskilllv(.school) < .level) end; if (countitem("PileOfAsh") >= 1) delitem "PileOfAsh", 1; else end; @@ -17,7 +17,7 @@ OnInit: set .school, SKILL_MAGIC_TRANSMUTE; set .invocation$, chr(MAGIC_SYMBOL) + "gole"; // used in npcs that refer to this spell - callfunc "magic_register"; + void call("magic_register"); set .level, 1; set .exp_gain, 1; end; |