From 98c16b9227c9e0673d7e263cd11a75a736e57ad1 Mon Sep 17 00:00:00 2001 From: andrzej Date: Fri, 1 May 2020 01:20:28 +0200 Subject: [PATCH] =?UTF-8?q?Zmiana=20ilo=C5=9Bci=20paczek=20w=20magazynie?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- main.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/main.py b/main.py index 995ce72..ee832a2 100644 --- a/main.py +++ b/main.py @@ -21,7 +21,7 @@ class MainGameFrame: self.display = pygame.display.set_mode(WINDOW_SIZE) agent_radius = int(TILE_WIDTH/2) self.agent_tex = pygame.image.load('forklift.png') - self.warehouse_map = warehouse.Warehouse(20, 20, 150, 2) + self.warehouse_map = warehouse.Warehouse(20, 20, 150, 20) starting_x, starting_y = self.set_starting_agent_position() self.agent = agent.Agent(starting_x, starting_y, self.warehouse_map, agent_radius) self.clock = pygame.time.Clock()