Fix sea being not collidable

Player can't walk over sea
This commit is contained in:
Michał Czekański 2020-04-26 18:11:54 +02:00
parent 1255ab8e16
commit 08d425b938

View File

@ -98,6 +98,7 @@ class Map:
elif tile == 'x':
object = TerrainTile(col, row, 'water.png', self.tileSize, 0)
self.screen.draw(object, Locations.MAP, 0, 0)
self.collidables.add(object)
elif tile == 'w':
object = TerrainTile(col, row, 'wall.png', self.tileSize, 0)
self.screen.draw(object, Locations.MAP, 0, 0)