aboutsummaryrefslogtreecommitdiff
path: root/src/script/lua_api/l_inventory.cpp
diff options
context:
space:
mode:
authorSmallJoker <SmallJoker@users.noreply.github.com>2021-10-12 20:12:20 +0200
committerGitHub <noreply@github.com>2021-10-12 20:12:20 +0200
commitecc6f4ba25cd49599922333a5f8d4b4ce368992d (patch)
tree9e54d0968bde5faf2f1870c5c806fa30521a695d /src/script/lua_api/l_inventory.cpp
parent6de8d77e17017cd5cc7b065d42566b6b1cd076cc (diff)
downloadhax-minetest-server-ecc6f4ba25cd49599922333a5f8d4b4ce368992d.tar.gz
hax-minetest-server-ecc6f4ba25cd49599922333a5f8d4b4ce368992d.zip
Remove a few unused functions reported by callcatcher (#11658)
Diffstat (limited to 'src/script/lua_api/l_inventory.cpp')
-rw-r--r--src/script/lua_api/l_inventory.cpp13
1 files changed, 0 insertions, 13 deletions
diff --git a/src/script/lua_api/l_inventory.cpp b/src/script/lua_api/l_inventory.cpp
index 0dd418462..b0a4ee194 100644
--- a/src/script/lua_api/l_inventory.cpp
+++ b/src/script/lua_api/l_inventory.cpp
@@ -421,19 +421,6 @@ void InvRef::create(lua_State *L, const InventoryLocation &loc)
luaL_getmetatable(L, className);
lua_setmetatable(L, -2);
}
-void InvRef::createPlayer(lua_State *L, RemotePlayer *player)
-{
- NO_MAP_LOCK_REQUIRED;
- InventoryLocation loc;
- loc.setPlayer(player->getName());
- create(L, loc);
-}
-void InvRef::createNodeMeta(lua_State *L, v3s16 p)
-{
- InventoryLocation loc;
- loc.setNodeMeta(p);
- create(L, loc);
-}
void InvRef::Register(lua_State *L)
{