forked from mtcontrib/minetest_hbhunger
Merge branch 'master' of yunohost.local:mtcontrib/minetest_hbhunger into nalc-1.2-dev
This commit is contained in:
commit
235a8652eb
@ -1,6 +1,6 @@
|
|||||||
# Hunger with HUD bar [`hbhunger`]
|
# Hunger with HUD bar [`hbhunger`]
|
||||||
|
|
||||||
* Version: 1.0.0
|
* Version: 1.0.1
|
||||||
|
|
||||||
## Using the mod
|
## Using the mod
|
||||||
|
|
||||||
|
@ -79,7 +79,13 @@ function hbhunger.item_eat(hunger_change, replace_with_item, poisen, heal, sound
|
|||||||
if h == nil or hp == nil then
|
if h == nil or hp == nil then
|
||||||
return
|
return
|
||||||
end
|
end
|
||||||
minetest.sound_play({name = sound or "hbhunger_eat_generic", gain = 1}, {pos=user:getpos(), max_hear_distance = 16})
|
minetest.sound_play(
|
||||||
|
{name = sound or "hbhunger_eat_generic",
|
||||||
|
gain = 1},
|
||||||
|
{object=user,
|
||||||
|
max_hear_distance = 16,
|
||||||
|
pitch = 1 + math.random(-10, 10)*0.005,}
|
||||||
|
)
|
||||||
|
|
||||||
-- Saturation
|
-- Saturation
|
||||||
if h < 30 and hunger_change then
|
if h < 30 and hunger_change then
|
||||||
|
2
init.lua
2
init.lua
@ -41,7 +41,7 @@ end
|
|||||||
dofile(minetest.get_modpath("hbhunger").."/hunger.lua")
|
dofile(minetest.get_modpath("hbhunger").."/hunger.lua")
|
||||||
|
|
||||||
-- register satiation hudbar
|
-- register satiation hudbar
|
||||||
hb.register_hudbar("satiation", 0xFFFFFF, S("Satiation"), { icon = "hbhunger_icon.png", bgicon = "hbhunger_bgicon.png", bar = "hbhunger_bar.png" }, 20, 30, false)
|
hb.register_hudbar("satiation", 0xFFFFFF, S("Satiation"), { icon = "hbhunger_icon.png", bgicon = "hbhunger_bgicon.png", bar = "hbhunger_bar.png" }, 20, 30, false, nil, { format_value = "%.1f", format_max_value = "%d" })
|
||||||
|
|
||||||
-- update hud elemtens if value has changed
|
-- update hud elemtens if value has changed
|
||||||
local function update_hud(player)
|
local function update_hud(player)
|
||||||
|
2
locale/hbhunger.ru.tr
Normal file
2
locale/hbhunger.ru.tr
Normal file
@ -0,0 +1,2 @@
|
|||||||
|
# textdomain:hbhunger
|
||||||
|
Satiation=голод
|
Loading…
Reference in New Issue
Block a user