summaryrefslogtreecommitdiff
path: root/currency/init.lua
diff options
context:
space:
mode:
authorVanessa Dannenberg <vanessa.e.dannenberg@gmail.com>2018-09-21 18:43:13 -0400
committerVanessa Dannenberg <vanessa.e.dannenberg@gmail.com>2018-09-21 18:43:13 -0400
commit3966b90b108634b7b507f2e58c0c84ab8fd7c37d (patch)
treee308be6a280cc984f7dc90e92346082b2c721c40 /currency/init.lua
parent57bb34e664a872ad3826b9cad9c46850325ef2ca (diff)
downloaddreambuilder_modpack-3966b90b108634b7b507f2e58c0c84ab8fd7c37d.tar
dreambuilder_modpack-3966b90b108634b7b507f2e58c0c84ab8fd7c37d.tar.gz
dreambuilder_modpack-3966b90b108634b7b507f2e58c0c84ab8fd7c37d.tar.bz2
dreambuilder_modpack-3966b90b108634b7b507f2e58c0c84ab8fd7c37d.tar.xz
dreambuilder_modpack-3966b90b108634b7b507f2e58c0c84ab8fd7c37d.zip
update currency mod
Diffstat (limited to 'currency/init.lua')
-rw-r--r--currency/init.lua48
1 files changed, 24 insertions, 24 deletions
diff --git a/currency/init.lua b/currency/init.lua
index 6dbf3a9..27cb054 100644
--- a/currency/init.lua
+++ b/currency/init.lua
@@ -1,24 +1,24 @@
-local modpath = minetest.get_modpath("currency")
-
--- internationalization boilerplate
-local S, NS = dofile(modpath.."/intllib.lua")
-
-minetest.log("info", S("Currency mod loading..."))
-
-dofile(modpath.."/craftitems.lua")
-minetest.log("info", "[Currency] "..S("Craft_items Loaded!"))
-dofile(modpath.."/shop.lua")
-minetest.log("info", "[Currency] "..S("Shop Loaded!"))
-dofile(modpath.."/barter.lua")
-minetest.log("info", "[Currency] "..S("Barter Loaded!"))
-dofile(modpath.."/safe.lua")
-minetest.log("info", "[Currency] "..S("Safe Loaded!"))
-dofile(modpath.."/crafting.lua")
-minetest.log("info", "[Currency] "..S("Crafting Loaded!"))
-
-if minetest.settings:get_bool("creative_mode") then
- minetest.log("info", "[Currency] "..S("Creative mode in use, skipping basic income."))
-else
- dofile(modpath.."/income.lua")
- minetest.log("info", "[Currency] "..S("Income Loaded!"))
-end
+local modpath = minetest.get_modpath("currency")
+
+-- internationalization boilerplate
+local S, NS = dofile(modpath.."/intllib.lua")
+
+minetest.log("info", S("Currency mod loading..."))
+
+dofile(modpath.."/craftitems.lua")
+minetest.log("info", "[Currency] "..S("Craft_items Loaded!"))
+dofile(modpath.."/shop.lua")
+minetest.log("info", "[Currency] "..S("Shop Loaded!"))
+dofile(modpath.."/barter.lua")
+minetest.log("info", "[Currency] "..S("Barter Loaded!"))
+dofile(modpath.."/safe.lua")
+minetest.log("info", "[Currency] "..S("Safe Loaded!"))
+dofile(modpath.."/crafting.lua")
+minetest.log("info", "[Currency] "..S("Crafting Loaded!"))
+
+if minetest.settings:get_bool("creative_mode") then
+ minetest.log("info", "[Currency] "..S("Creative mode in use, skipping basic income."))
+else
+ dofile(modpath.."/income.lua")
+ minetest.log("info", "[Currency] "..S("Income Loaded!"))
+end