forked from Mineclonia/Mineclonia
Upgrade hbarmor mod to version 0.3.0
This commit is contained in:
parent
04daa1295b
commit
1a427824a9
|
@ -1,6 +1,6 @@
|
||||||
# HUD bar for `3d_armor` [`hbarmor`]
|
# HUD bar for `3d_armor` [`hbarmor`]
|
||||||
|
|
||||||
* Version: 0.2.0
|
* Version: 0.3.0
|
||||||
|
|
||||||
## Description
|
## Description
|
||||||
This mod adds a simple HUD bar which displays the current damage
|
This mod adds a simple HUD bar which displays the current damage
|
||||||
|
|
|
@ -93,7 +93,7 @@ function hbarmor.set_armor(player_name, ges_state, items)
|
||||||
lvl = 0
|
lvl = 0
|
||||||
end
|
end
|
||||||
|
|
||||||
hbarmor.armor[player_name] = math.min(lvl* (items * (100 / max_items)), 100)
|
hbarmor.armor[player_name] = math.max(0, math.min(lvl* (items * (100 / max_items)), 100))
|
||||||
end
|
end
|
||||||
|
|
||||||
-- update hud elemtens if value has changed
|
-- update hud elemtens if value has changed
|
||||||
|
|
Loading…
Reference in New Issue