diff options
-rw-r--r-- | npc/006-1/crazyfefe.txt | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/npc/006-1/crazyfefe.txt b/npc/006-1/crazyfefe.txt index ab61ab64c..c67aa748f 100644 --- a/npc/006-1/crazyfefe.txt +++ b/npc/006-1/crazyfefe.txt @@ -132,7 +132,9 @@ L_CaveLogic: // TODO L_NextRound: // Victory conditions - if ($@FIGHT_CAVE_LEVEL >= 2200 || $@FIGHT_CAVE_PLAYER_COUNT == 1) + // FIXME debug + //if ($@FIGHT_CAVE_LEVEL >= 2200 || $@FIGHT_CAVE_PLAYER_COUNT == 1) + if ($@FIGHT_CAVE_LEVEL >= 2200) goto L_CleanUp; // Prepare next round @@ -184,8 +186,7 @@ L_Summon: end; L_CleanUp: - npctalk3 "Game Over!"; - mapannounce "006-1", "Who will be the next to fall on Crazyfefe's Cave?", 0; + mapannounce "006-1", "Game over! Who will be the next to fall on Crazyfefe's Cave?", 0; areatimer 0, "006-1", 20, 20, 70, 60, 10, "Crazyfefe::OnReward"; $@FIGHT_CAVE_LEVEL = 0; |