make eat grass block false by default

This commit is contained in:
tenplus1
2025-02-06 08:59:22 +00:00
parent 8d5fb34534
commit 1d9674721f
3 changed files with 3 additions and 3 deletions

View File

@ -6,7 +6,7 @@ local random = math.random
-- should sheep eat grass blocks and mess up the environment?
local eat_gb = minetest.settings:get_bool("mobs_animal.eat_grass_block") ~= false
local eat_gb = minetest.settings:get_bool("mobs_animal.eat_grass_block")
local replace_what = { {"group:grass", "air", -1} }
if eat_gb then