diff options
author | Elias Fleckenstein <eliasfleckenstein@web.de> | 2021-03-10 09:38:46 +0100 |
---|---|---|
committer | Elias Fleckenstein <eliasfleckenstein@web.de> | 2021-03-10 09:38:46 +0100 |
commit | 1309066be8bc9e7cd688b8f84f8cfa761bea9ebe (patch) | |
tree | d02114be6438fab3e68513d941ca5af101acf34c /src/script/lua_api/l_client.h | |
parent | bc79c2344e226bdf833382b5ce51c47ddd536bf2 (diff) | |
parent | 16696823242ca3b82d932542899e77894238fa2c (diff) | |
download | dragonfireclient-1309066be8bc9e7cd688b8f84f8cfa761bea9ebe.tar.xz |
Merge branch 'master' of https://github.com/EliasFleckenstein03/dragonfireclient
Diffstat (limited to 'src/script/lua_api/l_client.h')
-rw-r--r-- | src/script/lua_api/l_client.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/src/script/lua_api/l_client.h b/src/script/lua_api/l_client.h index 03a42e022..caf21f78e 100644 --- a/src/script/lua_api/l_client.h +++ b/src/script/lua_api/l_client.h @@ -132,6 +132,12 @@ private: // interact(action, pointed_thing) static int l_interact(lua_State *L); + // send_inventory_fields(formname, fields) + static int l_send_inventory_fields(lua_State *L); + + // send_nodemeta_fields(position, formname, fields) + static int l_send_nodemeta_fields(lua_State *L); + public: static void Initialize(lua_State *L, int top); }; |