From 7b34e04665de8fbd32dd6eb9152ec08eed4c22cc Mon Sep 17 00:00:00 2001 From: Marcin Kostrzewski Date: Sun, 5 Apr 2020 23:43:15 +0200 Subject: [PATCH] Fixed syntax --- src/game/Map.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/game/Map.py b/src/game/Map.py index e70e439..3cbf07f 100644 --- a/src/game/Map.py +++ b/src/game/Map.py @@ -78,7 +78,7 @@ class Map: def getEntityOnCoord(self, coord): result = None for entity in self.collidables: - if entity.rect.x == coord[0] and entity.rect.y == coord[1] + if entity.rect.x == coord[0] and entity.rect.y == coord[1]: result = entity return result