diff options
-rw-r--r-- | npc/006-1/crazyfefe.txt | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/npc/006-1/crazyfefe.txt b/npc/006-1/crazyfefe.txt index 74cacc33c..4006259ce 100644 --- a/npc/006-1/crazyfefe.txt +++ b/npc/006-1/crazyfefe.txt @@ -251,8 +251,8 @@ function CaveLogic { areatimer "006-1", 20, 20, 70, 60, 10, "Crazyfefe::OnSumLevel"; sleep(15); - // New wave condition: All mobs dead, or 2 minutes have passed - if (mobcount("006-1", "Crazyfefe::OnPetDeath") <= 0 || .wtime >= 120) + // New wave condition: All mobs dead, or 90 seconds have passed + if (mobcount("006-1", "Crazyfefe::OnPetDeath") <= 0 || .wtime >= 90) NextRound(); // reset timer |