We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent cef87fe commit e3491dbCopy full SHA for e3491db
1 file changed
scripts/vscripts/tf2ware_ultimate/specialrounds/wipeout.nut
@@ -258,7 +258,11 @@ function OnMinigameEnd()
258
foreach(player in Wipeout_Spectators)
259
{
260
//Ware_PlayGameSound(player, "victory") // there's just a weird silence without this
261
- player.RemoveCond(TF_COND_HALLOWEEN_GHOST_MODE)
+
262
+ local lives = Ware_GetPlayerSpecialRoundData(player).lives
263
+ if(lives > 0)
264
+ player.RemoveCond(TF_COND_HALLOWEEN_GHOST_MODE)
265
266
player.SetMoveType(MOVETYPE_WALK, 0)
267
player.SetCollisionGroup(COLLISION_GROUP_PUSHAWAY)
268
player.RemoveCond(TF_COND_HALLOWEEN_KART)
0 commit comments