Prepping map stuff
This commit is contained in:
@@ -8,5 +8,9 @@
|
||||
#include "tile.h"
|
||||
|
||||
bool_t tileIsWalkable(const tile_t tile) {
|
||||
return tile == TILE_WALKABLE;
|
||||
return (
|
||||
tile == TILE_WALKABLE ||
|
||||
tile == TILE_STAIRS_UP ||
|
||||
tile == TILE_STAIRS_DOWN
|
||||
);
|
||||
}
|
||||
Reference in New Issue
Block a user