From 076d97f7389a7b7b709678b1dd69f27506ce2b3b Mon Sep 17 00:00:00 2001 From: Linus Probert Date: Tue, 20 Feb 2018 21:53:58 +0100 Subject: [PATCH] Removed debug output --- src/map_lua.c | 3 --- 1 file changed, 3 deletions(-) diff --git a/src/map_lua.c b/src/map_lua.c index 0043120..00e2c3b 100644 --- a/src/map_lua.c +++ b/src/map_lua.c @@ -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");