Merge pull request 'fix punching ghast not getting velocity' (#2811) from fix_crash_when_punching_ghast into master

Reviewed-on: MineClone2/MineClone2#2811
Reviewed-by: PrairieWind <prairie.astronomer1@gmail.com>
This commit is contained in:
PrairieWind 2022-10-17 19:56:47 +00:00
commit 6b146bd6fb
1 changed files with 1 additions and 0 deletions

View File

@ -3459,6 +3459,7 @@ local mob_punch = function(self, hitter, tflp, tool_capabilities, dir)
dir = dir or {x = 0, y = 0, z = 0}
local v = self.object:get_velocity()
if not v then return end
local r = 1.4 - min(punch_interval, 1.4)
local kb = r * (abs(v.x)+abs(v.z))
local up = 2