diff --git a/plugins/minigames/gosquad_elimination.py b/plugins/minigames/gosquad_elimination.py index 9b66b47..8c11463 100644 --- a/plugins/minigames/gosquad_elimination.py +++ b/plugins/minigames/gosquad_elimination.py @@ -554,7 +554,7 @@ class EliminationGame(bs.TeamGameActivity[Player, Team]): self, position: Sequence[float], velocity: Sequence[float] ) -> None: bomb_type = random.choice([ - 'land_mine', 'land_mine', 'tnt', 'tnt', + 'land_mine', 'land_mine', 'tnt', 'tnt', 'impact', 'sticky', 'normal', ]) bomb = Bomb( @@ -678,7 +678,8 @@ class EliminationGame(bs.TeamGameActivity[Player, Team]): try: player.team.spawn_order.remove(player) player.team.spawn_order.append(player) - except: pass + except: + pass def _update(self) -> None: if self._solo_mode: @@ -707,10 +708,11 @@ class EliminationGame(bs.TeamGameActivity[Player, Team]): if len(self.teams) >= 5 and not self._add_player_phase: self._add_player_phase = True bs.broadcastmessage( - "Be ready! ⚔️ 2 random eliminated players may rejoin the game in 2 minutes.", + "Be ready! ⚔️ 2 random eliminated players may rejoin the game in 2 minutes.", color=(1, 0.7, 0.1) ) - self._add_player_timer = bs.BaseTimer(120, bs.WeakCallStrict(self._revive_random_players)) + self._add_player_timer = bs.BaseTimer( + 120, bs.WeakCallStrict(self._revive_random_players)) def _get_living_teams(self) -> list[Team]: return [