diff -r 3cf7799e04b5 -r bd15c8551318 share/hedgewars/Data/Missions/Campaign/A_Classic_Fairytale/epil.lua --- a/share/hedgewars/Data/Missions/Campaign/A_Classic_Fairytale/epil.lua Wed Jan 16 15:40:11 2019 +0100 +++ b/share/hedgewars/Data/Missions/Campaign/A_Classic_Fairytale/epil.lua Wed Jan 16 19:59:08 2019 +0100 @@ -113,6 +113,8 @@ gearDead = {} hogDead = {} + +local traitorTeamName = loc("Traitors") --------------------------Anim skip functions-------------------------- function SkipStartAnim() SetGearMessage(CurrentHedgehog, 0) @@ -328,7 +330,8 @@ end if m8Scene == denseScene or m8Scene == waterScene then - AddTeam(loc("Traitors"), -2, grave, "Island", voice, "cm_bloodyblade") + traitorTeamName = AddTeam(traitorTeamName, -2, grave, "Island", voice, "cm_bloodyblade") + SetTeamPassive(traitorTeamName, true) if m8Scene == denseScene then DeleteGear(natives[2]) natives[2] = AddHog(nativeNames[2], 0, 100, nativeHats[2]) @@ -434,6 +437,9 @@ if GetGearType(gear) == gtHedgehog then hogDead[gear] = true end + if IsEveryoneExceptTraitorDead() then + SetTeamPassive(traitorTeamName, false) + end end function onAmmoStoreInit() @@ -483,16 +489,7 @@ end function onNewTurn() - if AnimInProgress() then - SetTurnTimeLeft(MAX_TURN_TIME) - return - end - -- Don't allow player to play with traitor, except when it is the final hog left - if CurrentHedgehog == traitor and not IsEveryoneExceptTraitorDead() then - EndTurn(true) - else - SetTurnTimeLeft(MAX_TURN_TIME) - end + SetTurnTimeLeft(MAX_TURN_TIME) end function onPrecise()