mirror of
https://github.com/luanti-org/luanti.git
synced 2025-06-27 16:36:03 +00:00
Revert "Make sure we get a stacktrace for as many lua errors as possible"
This reverts commit 362ef5f6ce
.
Stack tracebacks couldn't be generated in LuaError::LuaError anyway and this
caused a second, empty traceback in most cases. In cases where there wasn't
annother traceback the stack had already unwound and the traceback was empty.
This commit is contained in:
parent
23be6450a1
commit
f8b7555558
6 changed files with 29 additions and 29 deletions
|
@ -54,7 +54,7 @@ int ScriptApiDetached::detached_inventory_AllowMove(
|
|||
if(lua_pcall(L, 7, 1, errorhandler))
|
||||
scriptError();
|
||||
if(!lua_isnumber(L, -1))
|
||||
throw LuaError(L, "allow_move should return a number");
|
||||
throw LuaError(NULL, "allow_move should return a number");
|
||||
int ret = luaL_checkinteger(L, -1);
|
||||
lua_pop(L, 2); // Pop integer and error handler
|
||||
return ret;
|
||||
|
@ -86,7 +86,7 @@ int ScriptApiDetached::detached_inventory_AllowPut(
|
|||
if(lua_pcall(L, 5, 1, errorhandler))
|
||||
scriptError();
|
||||
if(!lua_isnumber(L, -1))
|
||||
throw LuaError(L, "allow_put should return a number");
|
||||
throw LuaError(NULL, "allow_put should return a number");
|
||||
int ret = luaL_checkinteger(L, -1);
|
||||
lua_pop(L, 2); // Pop integer and error handler
|
||||
return ret;
|
||||
|
@ -118,7 +118,7 @@ int ScriptApiDetached::detached_inventory_AllowTake(
|
|||
if(lua_pcall(L, 5, 1, errorhandler))
|
||||
scriptError();
|
||||
if(!lua_isnumber(L, -1))
|
||||
throw LuaError(L, "allow_take should return a number");
|
||||
throw LuaError(NULL, "allow_take should return a number");
|
||||
int ret = luaL_checkinteger(L, -1);
|
||||
lua_pop(L, 2); // Pop integer and error handler
|
||||
return ret;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue