1
0
mirror of https://repo.or.cz/minetest_hudbars.git synced 2025-07-14 14:20:29 +02:00

4 Commits

2 changed files with 3 additions and 4 deletions

View File

@ -11,7 +11,7 @@ this mod will place them accordingly.
position should be displayed correctly on every screen size. position should be displayed correctly on every screen size.
## Current version ## Current version
The current version is 2.2.1. The current version is 2.2.0.
This software uses [semantic versioning](http://semver.org), as defined by version 2.0.0 of the SemVer This software uses [semantic versioning](http://semver.org), as defined by version 2.0.0 of the SemVer
standard. standard.

View File

@ -315,9 +315,6 @@ function hb.change_hudbar(player, identifier, new_value, new_max_value, new_icon
end end
local name = player:get_player_name() local name = player:get_player_name()
if not hudtable.hudstate[name] then
return false
end
local hudtable = hb.get_hudtable(identifier) local hudtable = hb.get_hudtable(identifier)
local value_changed, max_changed = false, false local value_changed, max_changed = false, false
@ -570,3 +567,5 @@ minetest.register_globalstep(function(dtime)
end end
if timer > 4 then timer = 0 end if timer > 4 then timer = 0 end
end) end)
minetest.log("action", "[hudbars] loaded.")