diff --git a/server/gameconnection.py b/server/gameconnection.py index 81e361668..4723d7761 100644 --- a/server/gameconnection.py +++ b/server/gameconnection.py @@ -293,7 +293,7 @@ async def handle_game_result(self, army, result): army = int(army) result = str(result).lower() try: - label, score = result.split(" ") + label, score = result.split(" ")[-2:] await self.game.add_result(self.player.id, army, label, int(score)) except (KeyError, ValueError): # pragma: no cover self._logger.warning("Invalid result for %s reported: %s", army, result)