fixing some of the last errors

This commit is contained in:
2026-05-11 12:26:04 +02:00
parent b2a48a1fc4
commit 1835ab96e9
3 changed files with 3164 additions and 3 deletions

View File

@@ -26,7 +26,7 @@ initializeGametype()
setDvar("speed", 1.5);
setDvar("streaks_online", 1);
setDvar("jump_height", 70);
setDvar("amount_weapons", 0); // 0 = full 162-weapon progression
setDvar("amount_weapons", 40); // 0 = full 162-weapon progression
setDvar("shuffle_weapons", 0); // weapons play in fixed order
}
loadSettings()

View File

@@ -677,14 +677,17 @@ Juggernaut()
juggIcon SetTargetEnt(self);
self thread destroyJuggOnNuke(juggIcon);
self waittill_any("death", "disconnect", "isMarked");
juggicon destroy();
if(isDefined(juggicon))
juggicon destroy();
}
destroyJuggOnNuke(juggIcon)
{
self endon("death");
self endon("disconnect");
self endon("isMarked");
level waittill("game_over");
juggIcon destroy();
if(isDefined(juggIcon))
juggIcon destroy();
}
NoReload()
{