summaryrefslogtreecommitdiff
path: root/src/script/lua_api/l_object.cpp
diff options
context:
space:
mode:
authorLoic Blot <loic.blot@unix-experience.fr>2018-03-08 22:06:48 +0100
committerLoïc Blot <nerzhul@users.noreply.github.com>2018-03-08 23:00:17 +0100
commitc7656edaa57a951f2496d454a42cdf899459b572 (patch)
tree2e594caa88d0014be8dfba655d9d95445c8f5bbc /src/script/lua_api/l_object.cpp
parent4be46aeeb17c42718ecea14934e24d77772b4126 (diff)
downloadminetest-c7656edaa57a951f2496d454a42cdf899459b572.tar.gz
minetest-c7656edaa57a951f2496d454a42cdf899459b572.tar.bz2
minetest-c7656edaa57a951f2496d454a42cdf899459b572.zip
Cleanup: drop Server::hudGetHotbarSelectedImage()
Call directly accessible RemotePlayer::getHotbarSelectedImage() from server api
Diffstat (limited to 'src/script/lua_api/l_object.cpp')
-rw-r--r--src/script/lua_api/l_object.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/script/lua_api/l_object.cpp b/src/script/lua_api/l_object.cpp
index 13b538f0c..03bd84d52 100644
--- a/src/script/lua_api/l_object.cpp
+++ b/src/script/lua_api/l_object.cpp
@@ -1519,7 +1519,7 @@ int ObjectRef::l_hud_get_hotbar_selected_image(lua_State *L)
if (player == NULL)
return 0;
- const std::string &name = getServer(L)->hudGetHotbarSelectedImage(player);
+ const std::string &name = player->getHotbarSelectedImage();
lua_pushlstring(L, name.c_str(), name.size());
return 1;
}