From 344f2e2909f08871246623afe7a441ab54602cf2 Mon Sep 17 00:00:00 2001 From: oto Date: Sun, 7 Aug 2022 09:24:27 +0300 Subject: [PATCH] added brackets to the player name --- GameMap.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/GameMap.py b/GameMap.py index 89486ae..e35d8c6 100644 --- a/GameMap.py +++ b/GameMap.py @@ -25,7 +25,7 @@ class GameMap: self.data[(x,y)] = player player.add_mark(x,y) else: - errorMessage = "The mark is already busy by the Player " + str(self.data[(x, y)].get_name()) + errorMessage = "The mark is already busy by the player '" + str(self.data[(x, y)].get_name()) + "'" raise KeyError(errorMessage) else: errorMessage = "The mark" + str((x,y)) + " is beyond preset max values, max_x - " + str(self.max_size_x) + ", max_y - " + str(self.max_size_y)