From e6e88c94ce0561b52c8c7cddc0a6a84201f6c5df Mon Sep 17 00:00:00 2001 From: AntumDeluge Date: Sun, 4 Sep 2016 17:31:06 -0700 Subject: [PATCH] minetest.conf: Reduce spawnegg frequency (interval = 4800, chance = 24000). --- TODO.md | 1 - minetest.conf | 28 ++++++++++++++++++++++++++++ 2 files changed, 28 insertions(+), 1 deletion(-) diff --git a/TODO.md b/TODO.md index 680e9833..3734b759 100644 --- a/TODO.md +++ b/TODO.md @@ -73,7 +73,6 @@ * ethereal:candle #### Nodes that are too common in game -* spawneggs:egg #### Nodes that do not work right * my_future_doors: diff --git a/minetest.conf b/minetest.conf index 6163d846..81afd7bd 100644 --- a/minetest.conf +++ b/minetest.conf @@ -1787,6 +1787,34 @@ only_peaceful_mobs = false +############## +## SPAWNING ## +############## + +# *** spawneggs *** + +# Spawning interval for spawneggs. Lower is more frequent. +# type: int +# default: 600 +spawneggs_egg_interval = 4800 + +# Spawning chance for spawneggs. Lower is greater chance (1 / chance) +# type: int +# default: 3000 +spawneggs_egg_chance = 24000 + +# Spawning interval for spawneggs grass. Lower is more frequent. +# type: int +# default: 600 +spawneggs_grass_interval = 600 + +# Spawning chance for spawneggs grass. Lower is greater chance (1 / chance) +# type: int +# default: 3000 +spawneggs_grass_chance = 3000 + + + ########### ## TOOLS ## ###########