summaryrefslogtreecommitdiff
path: root/src/script/cpp_api/s_inventory.cpp
diff options
context:
space:
mode:
authorShadowNinja <shadowninja@minetest.net>2014-03-15 17:20:52 -0400
committerShadowNinja <shadowninja@minetest.net>2014-03-15 17:20:52 -0400
commitf3d83a4516eb9c6658a7c3e07bf1b7d4f4996bef (patch)
tree3bd25ee5e996abae53e55671919a2fee7fa8f6d6 /src/script/cpp_api/s_inventory.cpp
parent31fe72dbac3d53e8da21ef116ccf99febbc5196e (diff)
downloadminetest-f3d83a4516eb9c6658a7c3e07bf1b7d4f4996bef.tar.gz
minetest-f3d83a4516eb9c6658a7c3e07bf1b7d4f4996bef.tar.bz2
minetest-f3d83a4516eb9c6658a7c3e07bf1b7d4f4996bef.zip
Add more informative error messages for inventory and item method errors
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 835c0818f..dd7e26510 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("allow_move should return a number");
+ throw LuaError("allow_move should return a number. name=" + name);
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("allow_put should return a number");
+ throw LuaError("allow_put should return a number. name=" + name);
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("allow_take should return a number");
+ throw LuaError("allow_take should return a number. name=" + name);
int ret = luaL_checkinteger(L, -1);
lua_pop(L, 2); // Pop integer and error handler
return ret;