From 2f1ef11fa3e772ef3b556cc54d2d8f227551d0f5 Mon Sep 17 00:00:00 2001 From: TenPlus1 Date: Fri, 6 Apr 2018 09:48:24 +0100 Subject: [PATCH] fix self.knock_back true error --- api.lua | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/api.lua b/api.lua index b36d63e..6405f63 100644 --- a/api.lua +++ b/api.lua @@ -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()