aboutsummaryrefslogtreecommitdiff
path: root/src/script/cpp_api/s_inventory.cpp
diff options
context:
space:
mode:
authorSfan5 <sfan5@live.de>2014-03-15 14:49:30 +0100
committerSfan5 <sfan5@live.de>2014-03-15 14:51:00 +0100
commit362ef5f6ced862daa4733034810d0b07e2ad5d89 (patch)
treebeca839a42d19ec135f84c4c0b894634d281a07b /src/script/cpp_api/s_inventory.cpp
parentd753d352f15ac3586a80b42dd4da6aca518c8ec8 (diff)
downloadhax-minetest-server-362ef5f6ced862daa4733034810d0b07e2ad5d89.tar.gz
hax-minetest-server-362ef5f6ced862daa4733034810d0b07e2ad5d89.zip
Make sure we get a stacktrace for as many lua errors as possible
Diffstat (limited to 'src/script/cpp_api/s_inventory.cpp')
-rw-r--r--src/script/cpp_api/s_inventory.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/script/cpp_api/s_inventory.cpp b/src/script/cpp_api/s_inventory.cpp
index db3c13fe0..c4912163a 100644
--- a/src/script/cpp_api/s_inventory.cpp
+++ b/src/script/cpp_api/s_inventory.cpp
@@ -54,7 +54,7 @@ int ScriptApiDetached::detached_inventory_AllowMove(
if(lua_pcall(L, 7, 1, errorhandler))
scriptError();
if(!lua_isnumber(L, -1))
- throw LuaError(NULL, "allow_move should return a number");
+ throw LuaError(L, "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(NULL, "allow_put should return a number");
+ throw LuaError(L, "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(NULL, "allow_take should return a number");
+ throw LuaError(L, "allow_take should return a number");
int ret = luaL_checkinteger(L, -1);
lua_pop(L, 2); // Pop integer and error handler
return ret;