Add a setting to disable hunger

This commit is contained in:
cora 2022-11-03 00:24:16 +01:00
parent f1cdb24545
commit 3a37b1c8cc
2 changed files with 5 additions and 3 deletions

View File

@ -11,10 +11,9 @@ Hunger is enabled when damage is enabled.
If the damage setting is changed within the game, this does NOT
update the hunger mechanic, so the game must be restarted for this
to take effect. ]]
if minetest.settings:get_bool("enable_damage") == true then
mcl_hunger.active = false
if minetest.settings:get_bool("enable_damage") == true and minetest.settings:get_bool("mcl_enable_hunger") ~= false then
mcl_hunger.active = true
else
mcl_hunger.active = false
end
mcl_hunger.HUD_TICK = 0.1

View File

@ -77,6 +77,9 @@ mcl_hand_range (Hand range) float 4.5 1 128
# Default:10
mcl_hand_range_creative (Creative mode hand range) float 10 1 128
# If enabled the hunger mechanic will be active
mcl_enable_hunger (Hunger mechanic) bool true
[Mobs]
# If enabled, mobs will spawn naturally. This does not affect
# affect mob spawners.