diff --git a/src/world.cpp b/src/world.cpp index f9bf4c32..c56da3dd 100644 --- a/src/world.cpp +++ b/src/world.cpp @@ -33,6 +33,8 @@ class WorldData static int LuaPanic(lua_State* L) { + char const *message = lua_tostring(L, -1); + Log::Error("%s\n", message); DebugAbort(); return 0; }