AntumDeluge 2017-05-13 04:43:00 -07:00
parent 5ec1e2f3ff
commit d12f08574b
2 changed files with 6 additions and 5 deletions

View File

@ -83,7 +83,7 @@ The game includes the mods from the default [minetest_game](https://github.com/m
* [ambience][ambience_ultralite] ([WTFPL][lic.wtfpl] / [CC BY / CC BY-SA / CC BY-NC-SA / CC0][lic.ambience_ultralite]) -- version: 0.36
* spawning/
* [adv_spawning][animals_modpack] (part of animals_modpack) ([WTFPL][lic.wtfpl]) -- version: [0.0.13 ec41aa9 Git][ver.adv_spawning] *2015-12-28* ([patched][patch.adv_spawning])
* [spawneggs][] ([WTFPL][lic.spawneggs]) -- version [4650370 Git][ver.spawneggs] *2013-09-09*
* [spawneggs][] ([WTFPL][lic.spawneggs]) -- version [4650370 Git][ver.spawneggs] *2013-09-09* ([patched][patch.spawneggs])
* storage/
* [more_chests][] ([GPL][lic.gpl2.0]) -- version [c597779 Git][ver.more_chests] *2017-02-27*
* tools/
@ -505,6 +505,7 @@ The game includes the mods from the default [minetest_game](https://github.com/m
[patch.quartz]: https://github.com/AntumDeluge/mtmod-quartz/tree/d23dabd
[patch.rainbow_ore]: https://github.com/AntumDeluge/mtmod-rainbow_ore/tree/60dc35e
[patch.signs_lib]: https://github.com/AntumDeluge/mtmod-signs_lib/tree/770978c
[patch.spawneggs]: https://github.com/AntumDeluge/mtmod-spawneggs/tree/b47f49f
[patch.spidermob]: https://github.com/AntumDeluge/mtmod-spidermob/tree/00b6107
[patch.technic]: https://github.com/AntumDeluge/mtmod-technic/tree/9649cee
[patch.trash_can]: https://github.com/AntumDeluge/mtmod-trash_can/tree/5a92bf4

View File

@ -1,7 +1,7 @@
local egg_interval = tonumber(minetest.setting_get('spawneggs_egg_interval')) or 600
local egg_chance = tonumber(minetest.setting_get('spawneggs_egg_chance')) or 3000
local grass_interval = tonumber(minetest.setting_get('spawneggs_grass_interval')) or 600
local grass_chance = tonumber(minetest.setting_get('spawneggs_grass_chance')) or 3000
local egg_interval = tonumber(minetest.settings:get('spawneggs_egg_interval')) or 600
local egg_chance = tonumber(minetest.settings:get('spawneggs_egg_chance')) or 3000
local grass_interval = tonumber(minetest.settings:get('spawneggs_grass_interval')) or 600
local grass_chance = tonumber(minetest.settings:get('spawneggs_grass_chance')) or 3000
local spawneggs_list = {
{ "Spawn Dirt Monster", "dirt_monster", "default:dirt"},