summaryrefslogtreecommitdiff
path: root/npc/020-1/siege.txt
diff options
context:
space:
mode:
Diffstat (limited to 'npc/020-1/siege.txt')
-rw-r--r--npc/020-1/siege.txt3
1 files changed, 1 insertions, 2 deletions
diff --git a/npc/020-1/siege.txt b/npc/020-1/siege.txt
index 9b56c90b2..a149b8ec2 100644
--- a/npc/020-1/siege.txt
+++ b/npc/020-1/siege.txt
@@ -14,13 +14,12 @@ OnLoop:
@nlib_time+=5; // This is looped every 5 s
// Victory conditions: All monsters dead & number of waves filled. (Or if you reach level 40)
- if (BaseLevel >= 40 || (@nlib_wave >= 10 && mobcount("020-1", "#NLib_Siege::OnPetDeath") <= 0)) {
+ if (BaseLevel >= 40 || (@nlib_wave >= 10 && mobcount("020-1", "#NLib_Siege::OnPetDeath") <= 0))
goto L_Victory;
// New wave condition: Waves pending and A- All Mobs Dead B- 4 minutes spent
if (@nlib_wave < 10 && (mobcount("020-1", "#NLib_Siege::OnPetDeath") <= 0 || @nlib_time >= 240))
goto L_NextRound;
- }
// reset timer
addtimer(5000, "#NLib_Siege::OnLoop");