diff options
author | rubenwardy <rw@rubenwardy.com> | 2020-10-04 00:33:45 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-10-04 00:33:45 +0100 |
commit | 3250b37e32f264db04c1ca449d9feefc22fd38b7 (patch) | |
tree | 9cb544e2e9df867bdc83f86c60d7fd912e0d0fe1 /src/script/lua_api/l_object.h | |
parent | 41a6136f774a30364b6d3fd2042c9dbeb34f2109 (diff) | |
download | minetest-3250b37e32f264db04c1ca449d9feefc22fd38b7.tar.xz |
Deprecate get_player_velocity and add_player_velocity (#10173)
Diffstat (limited to 'src/script/lua_api/l_object.h')
-rw-r--r-- | src/script/lua_api/l_object.h | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/src/script/lua_api/l_object.h b/src/script/lua_api/l_object.h index a75c59fd9..126719b1f 100644 --- a/src/script/lua_api/l_object.h +++ b/src/script/lua_api/l_object.h @@ -209,12 +209,6 @@ private: // get_player_name(self) static int l_get_player_name(lua_State *L); - // get_player_velocity(self) - static int l_get_player_velocity(lua_State *L); - - // add_player_velocity(self, {x=num, y=num, z=num}) - static int l_add_player_velocity(lua_State *L); - // get_fov(self) static int l_get_fov(lua_State *L); |