From 36a95838d17ffaee4020a2aba832af6636591df4 Mon Sep 17 00:00:00 2001 From: Paweł Redman Date: Thu, 14 Dec 2017 17:13:36 +0100 Subject: Rework collision masks and improve AI. --- src/game/assets.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/game/assets.cpp') diff --git a/src/game/assets.cpp b/src/game/assets.cpp index 2a91a96..1034f92 100644 --- a/src/game/assets.cpp +++ b/src/game/assets.cpp @@ -17,7 +17,7 @@ void load(void) alien.walking.load("assets/units/alien/walking", 2, 2, 2); world::register_tile(TILE_DIRT, 0); - world::register_tile(TILE_WALL, CF_SOLID | CF_HUMAN); + world::register_tile(TILE_WALL, CF_SOLID); render::register_tile(TILE_DIRT, "assets/tiles/dirt.png"); render::register_tile(TILE_WALL, "assets/tiles/wall.png"); } -- cgit