diff --git a/DataModels/GC.py b/DataModels/GC.py index 2e04adb..5f30cd2 100644 --- a/DataModels/GC.py +++ b/DataModels/GC.py @@ -20,7 +20,6 @@ class GC(Cell): self.update_rect(self.x, self.y) def collect(self, enviromnent): - print('collect') x, y = [self.x, self.y] coordinates = [(x, y - 1), (x, y + 1), (x - 1, y), (x + 1, y)] diff --git a/DataModels/House.py b/DataModels/House.py index d6f09ec..734b6c0 100644 --- a/DataModels/House.py +++ b/DataModels/House.py @@ -8,5 +8,4 @@ class House(Cell): def return_trash(self, collector): self.container.y, self.container.g, self.container.b = collector.container.add( [self.container.y, self.container.g, self.container.b]) - print(collector.container.status()) self.update_image() diff --git a/Resources/Images/Image_GC.png b/Resources/Images/Image_GC.png index 21e8cab..a1f5b0a 100644 Binary files a/Resources/Images/Image_GC.png and b/Resources/Images/Image_GC.png differ diff --git a/Resources/Images/Image_Grass.png b/Resources/Images/Image_Grass.png index 1edac35..05fd548 100644 Binary files a/Resources/Images/Image_Grass.png and b/Resources/Images/Image_Grass.png differ diff --git a/Resources/Images/Image_House.png b/Resources/Images/Image_House.png index 8c85463..0144bc0 100644 Binary files a/Resources/Images/Image_House.png and b/Resources/Images/Image_House.png differ diff --git a/Resources/Images/Image_Road.png b/Resources/Images/Image_Road.png index 94ec3fd..ffcaada 100644 Binary files a/Resources/Images/Image_Road.png and b/Resources/Images/Image_Road.png differ diff --git a/main.py b/main.py index 335943d..450d3a5 100644 --- a/main.py +++ b/main.py @@ -63,10 +63,6 @@ for y in map.readlines(): i += 1 -print(GRID_WIDTH, GRID_HEIGHT) -print(map_objects) - - for line in map_objects: for item in line: pygame_sprites.add(item)