Skip to content
This repository was archived by the owner on Dec 14, 2019. It is now read-only.
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion builtin.lua
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ hud.show_armor = minetest.get_modpath("3d_armor") ~= nil

-- check if some settings are invalid
local enable_hunger = minetest.setting_getbool("hud_hunger_enable")
if (enable_hunger == true or HUD_ENABLE_HUNGER == true) and not hud.show_hunger then
if enable_hunger == true and not hud.show_hunger then
hud.notify_hunger(5)
end

Expand Down