From 25930cc7fbfb2614602d60f4c72a54ce692d9945 Mon Sep 17 00:00:00 2001 From: RomulAugustus <87079566+RomulAugustus@users.noreply.github.com> Date: Mon, 25 Jul 2022 17:49:49 +0300 Subject: [PATCH] MERGE WITH PREV COMMIT --- GameMap.py | 1 - 1 file changed, 1 deletion(-) diff --git a/GameMap.py b/GameMap.py index 35cbc09..ec7c442 100644 --- a/GameMap.py +++ b/GameMap.py @@ -19,7 +19,6 @@ class GameMap: def add_mark(self, x, y, player): if (x <= self.max_size_x and y <= self.max_size_y) and (x >= 0 and y >= 0): - self.data[(x,y)] = player if (x, y) not in self.data: self.data[(x,y)] = player else: