summaryrefslogtreecommitdiff
path: root/src/script
diff options
context:
space:
mode:
authorLoic Blot <loic.blot@unix-experience.fr>2018-03-08 22:05:47 +0100
committerLoïc Blot <nerzhul@users.noreply.github.com>2018-03-08 23:00:17 +0100
commit4be46aeeb17c42718ecea14934e24d77772b4126 (patch)
treec38820ab515ea3edd167b2c475189b448548a36c /src/script
parent373f1bfb4ab5e48a9538e5ee561eb41174725c1c (diff)
downloadminetest-4be46aeeb17c42718ecea14934e24d77772b4126.tar.gz
minetest-4be46aeeb17c42718ecea14934e24d77772b4126.tar.bz2
minetest-4be46aeeb17c42718ecea14934e24d77772b4126.zip
Cleanup: drop Server::hudGetHotbarImage()
Call directly accessible RemotePlayer::getHotbarImage() from server api & make it const ref
Diffstat (limited to 'src/script')
-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 ce2bce85e..13b538f0c 100644
--- a/src/script/lua_api/l_object.cpp
+++ b/src/script/lua_api/l_object.cpp
@@ -1490,7 +1490,7 @@ int ObjectRef::l_hud_get_hotbar_image(lua_State *L)
if (player == NULL)
return 0;
- std::string name = getServer(L)->hudGetHotbarImage(player);
+ const std::string &name = player->getHotbarImage();
lua_pushlstring(L, name.c_str(), name.size());
return 1;
}