diff options
Diffstat (limited to 'npc/021-4')
-rw-r--r-- | npc/021-4/doors.txt | 2 | ||||
-rw-r--r-- | npc/021-4/main.txt | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/npc/021-4/doors.txt b/npc/021-4/doors.txt index 690e70438..49e84cfb9 100644 --- a/npc/021-4/doors.txt +++ b/npc/021-4/doors.txt @@ -5,7 +5,7 @@ // Cave logic 021-4,67,27,0 script #Leave0214 NPC_NO_SPRITE,0,0,{ - if ($@CINDY_STATE % 2 == 0 && $@CINDY_STATE < 150000) goto L_Blocked; + if ($@CINDY_STATE % 2 == 1 && $@CINDY_STATE < 150000) goto L_Blocked; warp "021-3", 24, 123; end; diff --git a/npc/021-4/main.txt b/npc/021-4/main.txt index 5617fe784..2a645ac4a 100644 --- a/npc/021-4/main.txt +++ b/npc/021-4/main.txt @@ -38,7 +38,7 @@ function script CindySwitch_Check_214 { // Global Variable: $@CINDY_STATE 021-4,66,49,0 script Cindy#Outside NPC_CINDY_CAGE,{ - if (getq(NivalisQuest_Cindy) < 5) + if (getq(NivalisQuest_Cindy) < 4) goto L_Cheat; if ($@CINDY_STATE > 150000) goto L_Reset; if ($@CINDY_STATE % 2 == 0) goto L_Start; |