forked from VoxeLibre/VoxeLibre
Change mcl_mobs to enable knockback in y direction
This commit is contained in:
parent
92ab90fd1b
commit
cdea2eeabf
|
@ -2730,7 +2730,7 @@ local mob_punch = function(self, hitter, tflp, tool_capabilities, dir)
|
||||||
|
|
||||||
self.object:set_velocity({
|
self.object:set_velocity({
|
||||||
x = dir.x * kb,
|
x = dir.x * kb,
|
||||||
y = up,
|
y = dir.y * kb + up,
|
||||||
z = dir.z * kb
|
z = dir.z * kb
|
||||||
})
|
})
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue