diff options
author | wushin <pasekei@gmail.com> | 2014-04-16 16:49:19 -0500 |
---|---|---|
committer | wushin <pasekei@gmail.com> | 2014-04-16 16:49:19 -0500 |
commit | 53087f47f4a8fc5f321be439d058a99cac0ca18f (patch) | |
tree | 89383a6727e7c565382885d0145eba97dc5aa9ec /world/map/npc/functions | |
parent | e04e9eb0065caa6adf12ef36efbd3c5a3c5c3652 (diff) | |
download | serverdata-53087f47f4a8fc5f321be439d058a99cac0ca18f.tar.gz serverdata-53087f47f4a8fc5f321be439d058a99cac0ca18f.tar.bz2 serverdata-53087f47f4a8fc5f321be439d058a99cac0ca18f.tar.xz serverdata-53087f47f4a8fc5f321be439d058a99cac0ca18f.zip |
Server Side Patches
Client-Submodule Update
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; } |