From 47bc762955aec6ae772bc2f8936d774a1d6be86b Mon Sep 17 00:00:00 2001 From: Vanessa Ezekowitz Date: Fri, 26 Dec 2014 15:33:18 -0500 Subject: make basic income only happen in Survival mode also cache the output of minetest.get_modpath() --- init.lua | 21 ++++++++++++++------- 1 file changed, 14 insertions(+), 7 deletions(-) diff --git a/init.lua b/init.lua index c7caffe..0c94994 100644 --- a/init.lua +++ b/init.lua @@ -1,13 +1,20 @@ print(" Currency mod loading... ") -dofile(minetest.get_modpath("currency").."/craftitems.lua") +local modpath = minetest.get_modpath("currency") + +dofile(modpath.."/craftitems.lua") print("[Currency] Craft_items Loaded!") -dofile(minetest.get_modpath("currency").."/shop.lua") +dofile(modpath.."/shop.lua") print("[Currency] Shop Loaded!") -dofile(minetest.get_modpath("currency").."/barter.lua") +dofile(modpath.."/barter.lua") print("[Currency] Barter Loaded!") -dofile(minetest.get_modpath("currency").."/safe.lua") +dofile(modpath.."/safe.lua") print("[Currency] Safe Loaded!") -dofile(minetest.get_modpath("currency").."/crafting.lua") +dofile(modpath.."/crafting.lua") print("[Currency] Crafting Loaded!") -dofile(minetest.get_modpath("currency").."/income.lua") -print("[Currency] Income Loaded!") + +if minetest.setting_getbool("creative_mode") then + print("[Currency] Creative mode in use, skipping basic income.") +else + dofile(modpath.."/income.lua") + print("[Currency] Income Loaded!") +end -- cgit v1.2.3