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)