Removed debug output

This commit is contained in:
Linus Probert 2018-02-20 21:53:58 +01:00
parent 94363a2e95
commit 076d97f738
1 changed files with 0 additions and 3 deletions

View File

@ -170,8 +170,6 @@ extract_tile_data(lua_State *L,
static Stats
lua_checkstats(lua_State *L, int index)
{
debug("Reading stats: %d", index);
// Confirm table
luaL_checktype(L, index, LUA_TTABLE);
@ -180,7 +178,6 @@ lua_checkstats(lua_State *L, int index)
// Stack: -1 => table
int tableIndex = lua_gettop(L);
debug("Table index: %d", tableIndex);
lua_getfield(L, tableIndex, "hp");
lua_getfield(L, tableIndex, "dmg");