diff options
author | Elias Fleckenstein <eliasfleckenstein@web.de> | 2020-10-18 13:16:09 +0200 |
---|---|---|
committer | Elias Fleckenstein <eliasfleckenstein@web.de> | 2020-10-18 13:16:09 +0200 |
commit | c1aea404b862256e6bf9316eeb8f32c72b78a4c2 (patch) | |
tree | c85049475ebac3b891521caf0fd69de40060bb2d /src/script/lua_api | |
parent | 3a718f12b433ef3980c8fc6e29957595110cd8f4 (diff) | |
download | dragonfireclient-c1aea404b862256e6bf9316eeb8f32c72b78a4c2.tar.xz |
Lint is bitch
Diffstat (limited to 'src/script/lua_api')
-rw-r--r-- | src/script/lua_api/l_localplayer.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/script/lua_api/l_localplayer.h b/src/script/lua_api/l_localplayer.h index c59cef764..f43eb2a4d 100644 --- a/src/script/lua_api/l_localplayer.h +++ b/src/script/lua_api/l_localplayer.h @@ -34,13 +34,13 @@ private: // get_velocity(self) static int l_get_velocity(lua_State *L); - + // set_velocity(self, vel) static int l_set_velocity(lua_State *L); // get_yaw(self) static int l_get_yaw(lua_State *L); - + // set_yaw(self, yaw) static int l_set_yaw(lua_State *L); @@ -52,7 +52,7 @@ private: // get_wield_index(self) static int l_get_wield_index(lua_State *L); - + // set_wield_index(self) static int l_set_wield_index(lua_State *L); @@ -84,7 +84,7 @@ private: // get_pos(self) static int l_get_pos(lua_State *L); - + // set_pos(self, pos) static int l_set_pos(lua_State *L); |