forked from Mineclonia/Mineclonia
comment sections of mcl_hunger that "poison" player. This is handled in mcl_potions.
This commit is contained in:
parent
78bee21a82
commit
1563fc7b96
|
@ -98,15 +98,15 @@ local function poisonp(tick, time, time_left, damage, exhaustion, name)
|
||||||
if time_left < time then
|
if time_left < time then
|
||||||
minetest.after(tick, poisonp, tick, time, time_left, damage, exhaustion, name)
|
minetest.after(tick, poisonp, tick, time, time_left, damage, exhaustion, name)
|
||||||
else
|
else
|
||||||
if damage > 0 then
|
-- if damage > 0 then
|
||||||
mcl_hunger.poison_damage[name] = mcl_hunger.poison_damage[name] - 1
|
-- mcl_hunger.poison_damage[name] = mcl_hunger.poison_damage[name] - 1
|
||||||
end
|
-- end
|
||||||
if exhaustion > 0 then
|
if exhaustion > 0 then
|
||||||
mcl_hunger.poison_hunger [name] = mcl_hunger.poison_hunger[name] - 1
|
mcl_hunger.poison_hunger [name] = mcl_hunger.poison_hunger[name] - 1
|
||||||
end
|
end
|
||||||
if mcl_hunger.poison_damage[name] <= 0 then
|
-- if mcl_hunger.poison_damage[name] <= 0 then
|
||||||
mcl_hunger.reset_bars_poison_damage(player)
|
-- mcl_hunger.reset_bars_poison_damage(player)
|
||||||
end
|
-- end
|
||||||
if mcl_hunger.poison_hunger[name] <= 0 then
|
if mcl_hunger.poison_hunger[name] <= 0 then
|
||||||
mcl_hunger.reset_bars_poison_hunger(player)
|
mcl_hunger.reset_bars_poison_hunger(player)
|
||||||
end
|
end
|
||||||
|
@ -225,10 +225,10 @@ function mcl_hunger.item_eat(hunger_change, replace_with_item, poisontime, poiso
|
||||||
end
|
end
|
||||||
if do_poison then
|
if do_poison then
|
||||||
-- Set poison bars
|
-- Set poison bars
|
||||||
if poison and poison > 0 then
|
-- if poison and poison > 0 then
|
||||||
hb.change_hudbar(user, "health", nil, nil, "hbhunger_icon_health_poison.png", nil, "hbhunger_bar_health_poison.png")
|
-- hb.change_hudbar(user, "health", nil, nil, "hbhunger_icon_health_poison.png", nil, "hbhunger_bar_health_poison.png")
|
||||||
mcl_hunger.poison_damage[name] = mcl_hunger.poison_damage[name] + 1
|
-- mcl_hunger.poison_damage[name] = mcl_hunger.poison_damage[name] + 1
|
||||||
end
|
-- end
|
||||||
if exhaust and exhaust > 0 then
|
if exhaust and exhaust > 0 then
|
||||||
hb.change_hudbar(user, "hunger", nil, nil, "mcl_hunger_icon_foodpoison.png", nil, "mcl_hunger_bar_foodpoison.png")
|
hb.change_hudbar(user, "hunger", nil, nil, "mcl_hunger_icon_foodpoison.png", nil, "mcl_hunger_bar_foodpoison.png")
|
||||||
if mcl_hunger.debug then
|
if mcl_hunger.debug then
|
||||||
|
@ -260,4 +260,3 @@ if mcl_hunger.active then
|
||||||
mcl_hunger.exhaust(name, mcl_hunger.EXHAUST_DIG)
|
mcl_hunger.exhaust(name, mcl_hunger.EXHAUST_DIG)
|
||||||
end)
|
end)
|
||||||
end
|
end
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue