aboutsummaryrefslogtreecommitdiff
path: root/src/script/lua_api/l_client.h
diff options
context:
space:
mode:
authorElias Fleckenstein <eliasfleckenstein@web.de>2020-10-18 12:54:08 +0200
committerElias Fleckenstein <eliasfleckenstein@web.de>2020-10-18 12:54:08 +0200
commit3a718f12b433ef3980c8fc6e29957595110cd8f4 (patch)
treef7c05e501df2c9a40d62ba13b0a3b9b78b394959 /src/script/lua_api/l_client.h
parent3b596a96e07bf8f799be6c21a546355980e34b94 (diff)
downloaddragonfireclient-3a718f12b433ef3980c8fc6e29957595110cd8f4.tar.xz
Make lint happy; Remove stupid redirector
Diffstat (limited to 'src/script/lua_api/l_client.h')
-rw-r--r--src/script/lua_api/l_client.h11
1 files changed, 6 insertions, 5 deletions
diff --git a/src/script/lua_api/l_client.h b/src/script/lua_api/l_client.h
index ebce7c02a..4e49ad60e 100644
--- a/src/script/lua_api/l_client.h
+++ b/src/script/lua_api/l_client.h
@@ -104,24 +104,25 @@ private:
// get_csm_restrictions()
static int l_get_csm_restrictions(lua_State *L);
-
+
// send_damage(damage)
static int l_send_damage(lua_State *L);
-
+
// place_node(pos)
static int l_place_node(lua_State *L);
-
+
// dig_node(pos)
static int l_dig_node(lua_State *L);
-
+
// get_inventory(location)
static int l_get_inventory(lua_State *L);
-
+
// set_keypress(key_setting, pressed)
static int l_set_keypress(lua_State *L);
// drop_selected_item()
static int l_drop_selected_item(lua_State *L);
+
public:
static void Initialize(lua_State *L, int top);
};