it's alive! 2

This commit is contained in:
Yakudami 2020-04-28 00:45:00 +02:00
parent 79f92cd55e
commit 7934ed0d9d

View File

@ -93,10 +93,10 @@ class Agent:
self.y = next.y
def check_if_can_move(self, next_coords: Coordinates):
tile_on_map = 0 <= next_coords.x < self.assigned_warehouse.width and 0 <= next_coords.y < self.assigned_warehouse.height
tile_on_map = 0 <= next_coords.x < self.warehouse.width and 0 <= next_coords.y < self.warehouse.height
if not tile_on_map:
return False
next_tile = self.assigned_warehouse.tiles[next_coords.x][next_coords.y]
next_tile = self.warehouse.tiles[next_coords.x][next_coords.y]
tile_passable = isinstance(next_tile, Tile) and next_tile.category.passable
return tile_passable