mirror of
https://github.com/azerothcore/mod-ale
synced 2025-11-29 15:38:17 +08:00
Eluna fix error reporting nonsense and popping stack. Closes #102
This commit is contained in:
@@ -319,12 +319,8 @@ void Eluna::RemoveRef(const void* obj)
|
||||
void Eluna::report(lua_State* L)
|
||||
{
|
||||
const char* msg = lua_tostring(L, -1);
|
||||
while (msg)
|
||||
{
|
||||
lua_pop(L, 1);
|
||||
ELUNA_LOG_ERROR("%s", msg);
|
||||
msg = lua_tostring(L, -1);
|
||||
}
|
||||
ELUNA_LOG_ERROR("%s", msg);
|
||||
lua_pop(L, 1);
|
||||
}
|
||||
|
||||
void Eluna::ExecuteCall(lua_State* L, int params, int res)
|
||||
|
||||
Reference in New Issue
Block a user