diff options
author | SmallJoker <mk939@ymail.com> | 2020-05-04 20:02:33 +0200 |
---|---|---|
committer | Loïc Blot <nerzhul@users.noreply.github.com> | 2020-05-05 08:37:04 +0200 |
commit | 1b6f40c35632ab5a2066822c8b5d4c09d469f49d (patch) | |
tree | 9fbfbf0faf9204b38639718f0b1662e419f20b6c /src/script/common | |
parent | 3ed5619d9a9e08031a749b8b4f5a3d1bc0e77608 (diff) | |
download | minetest-1b6f40c35632ab5a2066822c8b5d4c09d469f49d.tar.gz minetest-1b6f40c35632ab5a2066822c8b5d4c09d469f49d.tar.bz2 minetest-1b6f40c35632ab5a2066822c8b5d4c09d469f49d.zip |
Rename moveresult speed to velocity
Diffstat (limited to 'src/script/common')
-rw-r--r-- | src/script/common/c_content.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/script/common/c_content.cpp b/src/script/common/c_content.cpp index 6ff642738..95364000c 100644 --- a/src/script/common/c_content.cpp +++ b/src/script/common/c_content.cpp @@ -2046,10 +2046,10 @@ void push_collision_move_result(lua_State *L, const collisionMoveResult &res) } push_v3f(L, c.old_speed / BS); - lua_setfield(L, -2, "old_speed"); + lua_setfield(L, -2, "old_velocity"); push_v3f(L, c.new_speed / BS); - lua_setfield(L, -2, "new_speed"); + lua_setfield(L, -2, "new_velocity"); lua_rawseti(L, -2, i++); } |