Merge pull request 'Add a setting to disable hunger' (#2895) from hunger_setting into master

Reviewed-on: https://git.minetest.land/MineClone2/MineClone2/pulls/2895
This commit is contained in:
cora 2022-11-03 13:32:17 +00:00
commit b144a93fd8
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.