Try a different fix for knight damage boost
This commit is contained in:
parent
0ef68bb0f9
commit
52e2e4251f
1 changed files with 3 additions and 3 deletions
|
@ -14,9 +14,9 @@ minetest.register_on_punchplayer(function(player, hitter, time_from_last_punch,
|
||||||
end
|
end
|
||||||
|
|
||||||
if php - damage > 0 then
|
if php - damage > 0 then
|
||||||
player:set_hp(php - damage)
|
minetest.after(0, function()
|
||||||
player:punch(hitter, 1, {damage_groups = {fleshy = time_from_last_punch*2, nopunch = 1}}, dir)
|
player:punch(hitter, 1, {damage_groups = {fleshy = time_from_last_punch*2, nopunch = 1}}, dir)
|
||||||
return true
|
end)
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
end)
|
end)
|
||||||
|
|
Loading…
Reference in a new issue