Elkien3 f827c0cd6d add coins
tin, copper, steel, bronze, and gold
2018-06-27 15:52:54 -05:00

21 lines
749 B
Lua

minetest.log("info", " Currency mod loading... ")
local modpath = minetest.get_modpath("currency")
--dofile(modpath.."/craftitems.lua")
--minetest.log("info", "[Currency] Craft_items Loaded!")
dofile(modpath.."/coins.lua")
minetest.log("info", "[Currency] Coins Loaded!")
dofile(modpath.."/shop.lua")
minetest.log("info", "[Currency] Shop Loaded!")
--dofile(modpath.."/barter.lua")
--minetest.log("info", "[Currency] Barter Loaded!")
--dofile(modpath.."/safe.lua")
--minetest.log("info", "[Currency] Safe Loaded!")
--[[if minetest.setting_getbool("creative_mode") then
minetest.log("info", "[Currency] Creative mode in use, skipping basic income.")
else
dofile(modpath.."/income.lua")
minetest.log("info", "[Currency] Income Loaded!")
end
--]]