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 ## ###########