diff options
author | Elias Fleckenstein <eliasfleckenstein@web.de> | 2020-11-26 18:44:29 +0100 |
---|---|---|
committer | Elias Fleckenstein <eliasfleckenstein@web.de> | 2020-11-26 18:44:29 +0100 |
commit | eaec3645b08e517e709b15089ad09d4978d69297 (patch) | |
tree | 9db743ddca4255acdf75a6b3c32fcfca5fad5b3b /src/script/lua_api/l_clientobject.h | |
parent | fb4d54ee30ee9b8394bac18418b88adb0f9cd953 (diff) | |
download | dragonfireclient-eaec3645b08e517e709b15089ad09d4978d69297.tar.xz |
Added ClientObjectRef:get_hp()
Diffstat (limited to 'src/script/lua_api/l_clientobject.h')
-rw-r--r-- | src/script/lua_api/l_clientobject.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/script/lua_api/l_clientobject.h b/src/script/lua_api/l_clientobject.h index a4516e047..d622dc3b2 100644 --- a/src/script/lua_api/l_clientobject.h +++ b/src/script/lua_api/l_clientobject.h @@ -77,6 +77,9 @@ private: static int l_get_item_textures(lua_State *L); // get_hp(self) + static int l_get_hp(lua_State *L); + + // get_max_hp(self) static int l_get_max_hp(lua_State *L); // punch(self) |