Merge pull request 'Fix Mobs not taking knockback on the Y-axis' (#1061) from Code-Sploit/MineClone2:master into master

Reviewed-on: https://git.minetest.land/MineClone2/MineClone2/pulls/1061
This commit is contained in:
kay27 2021-02-05 21:41:38 +00:00
commit 696ae8e6fe
1 changed files with 1 additions and 1 deletions

View File

@ -3097,7 +3097,7 @@ local mob_punch = function(self, hitter, tflp, tool_capabilities, dir)
self.object:set_velocity({
x = dir.x * kb,
y = dir.y * kb + up,
y = dir.y * kb + up * 2,
z = dir.z * kb
})