[adv_spawning] Update to Git patch e73c0aa:

https://github.com/AntumDeluge/mtmod-adv_spawning/tree/e73c0aa
master
AntumDeluge 2017-05-13 04:52:46 -07:00
parent 06c9836ebf
commit 04b1270997
3 changed files with 4 additions and 4 deletions

View File

@ -473,7 +473,7 @@ The game includes the mods from the default [minetest_game](https://github.com/m
[ver.workbench]: https://github.com/minetest-mods/workbench/tree/74dd1af
[ver.worldedge]: https://github.com/minetest-mods/worldedge/tree/e15fa99
[patch.adv_spawning]: https://github.com/AntumDeluge/mtmod-adv_spawning/tree/572688b
[patch.adv_spawning]: https://github.com/AntumDeluge/mtmod-adv_spawning/tree/e73c0aa
[patch.advtrains]: https://github.com/AntumDeluge/mtmp-advtrains/tree/26f8bf4
[patch.animals_modpack]: https://github.com/AntumDeluge/mtmp-animals_modpack/tree/e84e1e6
[patch.bags]: https://github.com/AntumDeluge/mtmod-bags/tree/4363284

View File

@ -15,7 +15,7 @@ local version = "0.0.13"
-- -----------------------------------------------------------------------------
adv_spawning = {}
adv_spawning.debug = core.setting_get("adv_spawning.debug")
adv_spawning.debug = minetest.settings:get("adv_spawning.debug")
local adv_modpath = core.get_modpath("adv_spawning")

View File

@ -68,7 +68,7 @@ function adv_spawning.initialize()
adv_spawning.spawner_validation_delta = 0
adv_spawning.spawner_validation_interval = 30
adv_spawning.active_range = minetest.setting_get("active_block_range")
adv_spawning.active_range = minetest.settings:get("active_block_range")
if (adv_spawning.active_range == nil) then
adv_spawning.log("info", "No \"active_block_range\" set, defaulting to 5")
@ -222,7 +222,7 @@ function adv_spawning.global_onstep(dtime)
adv_spawning.statistics.session.steps
if core.is_yes(
core.setting_get("adv_spawning_validate_spawners")) then
minetest.settings:get("adv_spawning_validate_spawners")) then
adv_spawning.spawner_validation_delta =
adv_spawning.spawner_validation_delta + dtime