diff --git a/scripts/multiplayer/session.gd b/scripts/multiplayer/session.gd index b8137bd..9af355d 100644 --- a/scripts/multiplayer/session.gd +++ b/scripts/multiplayer/session.gd @@ -183,7 +183,7 @@ func add_dead(team: int): return if team == TEAMS.ATTACK: attackers_alive -= 1 - if attackers_alive == 0 and round_state != ROUND_STATES.AFTER_ROUND: + if attackers_alive == 0 and round_state != ROUND_STATES.AFTER_ROUND and round_state != ROUND_STATES.AFTER_PLANT: end_round(TEAMS.DEFENCE) if team == TEAMS.DEFENCE: defenders_alive -= 1