diff --git a/README.md b/README.md index 6041884d..2f26ca1c 100644 --- a/README.md +++ b/README.md @@ -488,7 +488,7 @@ The game includes the mods from the default [minetest_game](https://github.com/m [patch.craftguide]: https://github.com/AntumDeluge/mtmod-craftguide/tree/44c2e03 [patch.creeper]: https://github.com/AntumDeluge/mtmod-creeper/tree/dc9ffbe [patch.crops]: https://github.com/AntumDeluge/mtmod-crops/tree/f8b33ae -[patch.currency]: https://github.com/AntumDeluge/mtmod-currency/tree/7b0e29f +[patch.currency]: https://github.com/AntumDeluge/mtmod-currency/tree/29f4eda [patch.ethereal]: https://github.com/AntumDeluge/mtmod-ethereal/tree/4be06f0 [patch.fort_spikes]: https://github.com/AntumDeluge/mtmod-fort_spikes/tree/74dca42 [patch.helicopter]: https://github.com/AntumDeluge/mtmod-helicopter/tree/66a6523 diff --git a/mods/currency/init.lua b/mods/currency/init.lua index 744fcad9..1472f8a5 100644 --- a/mods/currency/init.lua +++ b/mods/currency/init.lua @@ -12,7 +12,7 @@ minetest.log("info", "[Currency] Safe Loaded!") dofile(modpath.."/crafting.lua") minetest.log("info", "[Currency] Crafting Loaded!") -if minetest.setting_getbool("creative_mode") then +if minetest.settings:get_bool("creative_mode") then minetest.log("info", "[Currency] Creative mode in use, skipping basic income.") else dofile(modpath.."/income.lua")