Compare commits

..

1 Commits

Author SHA1 Message Date
Bram van den Heuvel 1881ab9598 Serve Mute agent as PyServer 2026-07-01 23:01:54 +02:00
2 changed files with 2 additions and 2 deletions

View File

@ -669,7 +669,7 @@ class EloTracker:
:raises ValueError: One of the randomly chosen URLs could not be accessed. :raises ValueError: One of the randomly chosen URLs could not be accessed.
""" """
with self.__lock: with self.__lock:
players = [agent.url for agent in self.players if game.game_name() in agent.games] players = [agent.url for agent in self.players]
random.shuffle(players) random.shuffle(players)

View File

@ -15,7 +15,7 @@ def main() -> int:
:return: Exit code :return: Exit code
:rtype: int :rtype: int
""" """
player = PyServer(agents.AgentOfChaos()) player = PyServer(agents.MuteAgent())
# Start listening for games # Start listening for games
player.start( player.start(