[biome_lib] Update to Git commit 7f54d95:

https://github.com/minetest-mods/biome_lib/tree/7f54d95
This commit is contained in:
AntumDeluge 2017-06-05 12:07:55 -07:00
parent 5152e0798e
commit dd8987f5c0
2 changed files with 4 additions and 5 deletions

View File

@ -116,7 +116,7 @@ The game includes the mods from the default [minetest_game](https://github.com/m
* [mywoodslopes][] ([DWYWPL][lic.dwywpl]) -- version: [3a1b531 Git][ver.mywoodslopes] *2016-03-23*
* world/
* [bedrock2][] ([WTFPL][lic.wtfpl]) -- version [1.2.2 (5fe9e87 Git)][ver.bedrock2] *2016-11-21* ([patched][patch.bedrock2])
* [biome_lib][] ([WTFPL][lic.wtfpl]) -- version: [9cdcdcf Git][ver.biome_lib] *2017-01-26* ([patched][patch.biome_lib])
* [biome_lib][] ([WTFPL][lic.wtfpl]) -- version: [7f54d95 Git][ver.biome_lib] *2017-05-18*
* [desert_life][] ([CC BY-SA][lic.ccbysa4.0]) -- version: [d448fa3 Git][ver.desert_life] *2017-01-01*
* [ethereal][] ([MIT][lic.ethereal]) -- version [2c24961 Git][ver.ethereal] *2017-04-23* ([patched][patch.ethereal])
* [glow][] ([GPL][lic.gpl2.0]) -- version: [30f9cf3 Git][ver.glow] *2015-09-25* ([patched][patch.glow])
@ -401,7 +401,7 @@ The game includes the mods from the default [minetest_game](https://github.com/m
[ver.away]: https://github.com/kahrl/minetest-mod-away/tree/4c1e5a9
[ver.bags]: https://github.com/cornernote/minetest-bags/tree/f17d829
[ver.bedrock2]: http://repo.or.cz/minetest_bedrock2.git/tree/5fe9e87
[ver.biome_lib]: https://github.com/minetest-mods/biome_lib/tree/9cdcdcf
[ver.biome_lib]: https://github.com/minetest-mods/biome_lib/tree/7f54d95
[ver.bookmarks_gui]: https://github.com/cornernote/minetest-bookmarks_gui/tree/d369dba
[ver.bridges]: https://github.com/Sokomine/bridges/tree/5b5f475
[ver.campfire]: https://github.com/Napiophelios/campfire/tree/b45acd2
@ -495,7 +495,6 @@ The game includes the mods from the default [minetest_game](https://github.com/m
[patch.areas]: https://github.com/AntumDeluge/mtmod-areas/tree/db074be
[patch.bags]: https://github.com/AntumDeluge/mtmod-bags/tree/4363284
[patch.bedrock2]: https://github.com/AntumDeluge/mtmod-bedrock2/tree/0375ac1
[patch.biome_lib]: https://github.com/AntumDeluge/mtmod-biome_lib/tree/4821839
[patch.campfire]: https://github.com/AntumDeluge/mtmod-campfire/tree/67b9dd7
[patch.castle_gates]: https://github.com/AntumDeluge/mtmod-castle_gates/tree/465ad4f
[patch.castle_lighting]: https://github.com/AntumDeluge/mtmod-castle_lighting/tree/b360c54

View File

@ -66,7 +66,7 @@ local humidity_persistence = 0.5
local humidity_scale = 250
local time_scale = 1
local time_speed = tonumber(minetest.setting_get("time_speed"))
local time_speed = tonumber(minetest.settings:get("time_speed"))
if time_speed and time_speed > 0 then
time_scale = 72 / time_speed
@ -717,7 +717,7 @@ end
-- Check for infinite stacks
if minetest.get_modpath("unified_inventory") or not minetest.setting_getbool("creative_mode") then
if minetest.get_modpath("unified_inventory") or not minetest.settings:get_bool("creative_mode") then
biome_lib.expect_infinite_stacks = false
else
biome_lib.expect_infinite_stacks = true