diff options
author | ShadowNinja <shadowninja@minetest.net> | 2014-03-15 16:28:59 -0400 |
---|---|---|
committer | ShadowNinja <shadowninja@minetest.net> | 2014-03-15 16:28:59 -0400 |
commit | 31fe72dbac3d53e8da21ef116ccf99febbc5196e (patch) | |
tree | 2a040621c7ee34a67a09f50e7fe19bf9b6c34c90 /src/script/cpp_api/s_inventory.cpp | |
parent | f8b75555586e0e67d8320a804b9e077d29b96403 (diff) | |
download | minetest-31fe72dbac3d53e8da21ef116ccf99febbc5196e.tar.gz minetest-31fe72dbac3d53e8da21ef116ccf99febbc5196e.tar.bz2 minetest-31fe72dbac3d53e8da21ef116ccf99febbc5196e.zip |
Remove lua_State parameter from LuaError::LuaError
Diffstat (limited to 'src/script/cpp_api/s_inventory.cpp')
-rw-r--r-- | src/script/cpp_api/s_inventory.cpp | 6 |
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..835c0818f 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("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("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("allow_take should return a number"); int ret = luaL_checkinteger(L, -1); lua_pop(L, 2); // Pop integer and error handler return ret; |