diff options
author | Jesusaves <cpntb1@ymail.com> | 2018-10-22 20:14:32 -0200 |
---|---|---|
committer | Jesusaves <cpntb1@ymail.com> | 2018-10-22 20:14:32 -0200 |
commit | 659dad9dd937ff985cde34e186e9f98591525cf9 (patch) | |
tree | de5b1102c6b3d1ad94085e7bb44c65595bde2f15 /npc/021-4 | |
parent | af4fbf57746c3f032be2aeb5ed347c4a28343021 (diff) | |
download | serverdata-659dad9dd937ff985cde34e186e9f98591525cf9.tar.gz serverdata-659dad9dd937ff985cde34e186e9f98591525cf9.tar.bz2 serverdata-659dad9dd937ff985cde34e186e9f98591525cf9.tar.xz serverdata-659dad9dd937ff985cde34e186e9f98591525cf9.zip |
Missing check
Diffstat (limited to 'npc/021-4')
-rw-r--r-- | npc/021-4/doors.txt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/npc/021-4/doors.txt b/npc/021-4/doors.txt index d45397041..456d02a08 100644 --- a/npc/021-4/doors.txt +++ b/npc/021-4/doors.txt @@ -6,7 +6,7 @@ // Cave logic 021-4,43,19,0 script #Leave0214 NPC_NO_SPRITE,0,0,{ - if ($@CINDY_STATE % 2 == 0) goto L_Blocked; + if ($@CINDY_STATE % 2 == 0 && $@CINDY_STATE < 150000) goto L_Blocked; warp "021-3", 24, 123; end; |