Fix bug in bugfix code
This commit is contained in:
parent
d171436b46
commit
0ef68bb0f9
1 changed files with 4 additions and 3 deletions
|
@ -5,16 +5,17 @@ minetest.register_on_punchplayer(function(player, hitter, time_from_last_punch,
|
||||||
local class = ctf_classes.get(hitter)
|
local class = ctf_classes.get(hitter)
|
||||||
|
|
||||||
if class.properties.melee_bonus and hitter:get_wielded_item():get_name():find("sword") then
|
if class.properties.melee_bonus and hitter:get_wielded_item():get_name():find("sword") then
|
||||||
|
local php = player:get_hp()
|
||||||
|
|
||||||
if time_from_last_punch > 1 then
|
if time_from_last_punch > 1 then
|
||||||
time_from_last_punch = 1
|
time_from_last_punch = 1
|
||||||
elseif time_from_last_punch < 0.5 then
|
elseif time_from_last_punch < 0.5 then
|
||||||
time_from_last_punch = 0.5
|
time_from_last_punch = 0.5
|
||||||
end
|
end
|
||||||
|
|
||||||
if hitter:get_hp() > 0 then
|
if php - damage > 0 then
|
||||||
player:set_hp(player:get_hp() - damage)
|
player:set_hp(php - damage)
|
||||||
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
|
return true
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
Loading…
Reference in a new issue