diff options
author | RealBadAngel <maciej.kasatkin@o2.pl> | 2016-01-08 15:59:36 +0100 |
---|---|---|
committer | paramat <mat.gregory@virginmedia.com> | 2016-01-18 17:21:41 +0000 |
commit | 87291ea44a61614d5bd9efc0657926da3f867b5f (patch) | |
tree | c5c046e5dc74211532f0fd88434283e49e190d98 /src/script | |
parent | eb6e2c11b16c9ef5287bda224fa965a37ef49131 (diff) | |
download | minetest-87291ea44a61614d5bd9efc0657926da3f867b5f.tar.gz minetest-87291ea44a61614d5bd9efc0657926da3f867b5f.tar.bz2 minetest-87291ea44a61614d5bd9efc0657926da3f867b5f.zip |
Show infotext with description for item entities
Diffstat (limited to 'src/script')
-rw-r--r-- | src/script/common/c_content.cpp | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/script/common/c_content.cpp b/src/script/common/c_content.cpp index 62de2c968..275b22bb8 100644 --- a/src/script/common/c_content.cpp +++ b/src/script/common/c_content.cpp @@ -216,6 +216,7 @@ void read_object_properties(lua_State *L, int index, prop->automatic_face_movement_max_rotation_per_sec = luaL_checknumber(L, -1); } lua_pop(L, 1); + getstringfield(L, -1, "infotext", prop->infotext); } /******************************************************************************/ @@ -282,6 +283,8 @@ void push_object_properties(lua_State *L, ObjectProperties *prop) lua_setfield(L, -2, "nametag_color"); lua_pushnumber(L, prop->automatic_face_movement_max_rotation_per_sec); lua_setfield(L, -2, "automatic_face_movement_max_rotation_per_sec"); + lua_pushlstring(L, prop->infotext.c_str(), prop->infotext.size()); + lua_setfield(L, -2, "infotext"); } /******************************************************************************/ |