fix self.knock_back true error

This commit is contained in:
TenPlus1 2018-04-06 09:48:24 +01:00
parent 2418e2af21
commit 2f1ef11fa3
1 changed files with 2 additions and 2 deletions

View File

@ -3,7 +3,7 @@
mobs = {}
mobs.mod = "redo"
mobs.version = "20180331"
mobs.version = "20180406"
-- Intllib
@ -2395,7 +2395,7 @@ local mob_punch = function(self, hitter, tflp, tool_capabilities, dir)
end) ]]
-- knock back effect (only on full punch)
if self.knock_back > 0
if self.knock_back
and tflp >= punch_interval then
local v = self.object:getvelocity()