diff options
Diffstat (limited to 'world/map/npc/functions')
-rw-r--r-- | world/map/npc/functions/undead_debug.txt | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/world/map/npc/functions/undead_debug.txt b/world/map/npc/functions/undead_debug.txt index 4f01a78c..4b2a015a 100644 --- a/world/map/npc/functions/undead_debug.txt +++ b/world/map/npc/functions/undead_debug.txt @@ -87,6 +87,10 @@ L_Close: set @undeaddebug, 3; callfunc "UndeadDebug"; end; +OnInit: + if (!debug) + disablenpc "UndeadDebug3"; + end; } // Debug for Razha @@ -95,6 +99,10 @@ L_Close: set @undeaddebug, 4; callfunc "UndeadDebug"; end; +OnInit: + if (!debug) + disablenpc "UndeadDebug4"; + end; } // Debug for Terogan @@ -103,4 +111,8 @@ L_Close: set @undeaddebug, 5; callfunc "UndeadDebug"; end; +OnInit: + if (!debug) + disablenpc "UndeadDebug5"; + end; } |