remove my_snake output into server console

This commit is contained in:
2024-04-16 00:35:46 +02:00
parent 0eecbb774b
commit e3d7cccb64
+1 -1
View File
@@ -100,7 +100,7 @@ class Server:
if self.debug: if self.debug:
print(self.running_games[game_state["game"]["id"]]) print(self.running_games[game_state["game"]["id"]])
print("TURN:", f'{game_state["turn"]:3},', "MOVE:", f"{next_move:5},", "Me:", {"head": game_state["you"]["head"], "length": game_state["you"]["length"]}) print("TURN:", f'{game_state["turn"]:3},', "MOVE:", f"{next_move:5}")
return {"move": next_move} return {"move": next_move}
# end is called when your Battlesnake finishes a game # end is called when your Battlesnake finishes a game