forked from minetest-mods/gauges
5.x compatibility, drop 0.4.x support (#2)
This commit is contained in:
parent
ab2d7c83be
commit
6cd5e97542
|
@ -60,9 +60,7 @@ on that line.
|
|||
|
||||
## Version compatibility
|
||||
|
||||
Gauges is currently primarily tested with Minetest 0.4.17.
|
||||
It may or may not work with newer or older versions. Issues arising in older
|
||||
versions than 0.4.17 will generally not be fixed.
|
||||
Gauges requires Minetest 5.0.0 or newer to work as expected.
|
||||
|
||||
## License
|
||||
|
||||
|
|
2
init.lua
2
init.lua
|
@ -48,7 +48,7 @@ local function add_HP_gauge(name)
|
|||
local ent = minetest.add_entity(pos, "gauges:hp_bar")
|
||||
|
||||
if ent ~= nil then
|
||||
ent:set_attach(player, "", {x = 0, y = 10, z = 0}, {x = 0, y = 0, z = 0})
|
||||
ent:set_attach(player, "", {x = 0, y = 19, z = 0}, {x = 0, y = 0, z = 0})
|
||||
ent = ent:get_luaentity()
|
||||
ent.wielder = player:get_player_name()
|
||||
end
|
||||
|
|
Loading…
Reference in New Issue
Block a user