Fixes a weird issue with missing code

This commit is contained in:
Linus Probert 2019-03-14 08:52:27 +01:00
parent 184b42ff5a
commit 0983bd1bd2
1 changed files with 2 additions and 0 deletions

View File

@ -271,12 +271,14 @@ l_add_tile(lua_State *L)
return 0;
}
static int
l_add_wall(lua_State *L)
{
extract_tile_data(L, &map_add_wall);
return 0;
}
static int
l_add_door(lua_State *L)
{
extract_tile_data(L, &map_add_door);