summaryrefslogtreecommitdiff
path: root/moreblocks/init.lua
diff options
context:
space:
mode:
Diffstat (limited to 'moreblocks/init.lua')
-rw-r--r--moreblocks/init.lua33
1 files changed, 33 insertions, 0 deletions
diff --git a/moreblocks/init.lua b/moreblocks/init.lua
new file mode 100644
index 0000000..2919a30
--- /dev/null
+++ b/moreblocks/init.lua
@@ -0,0 +1,33 @@
+--[[
+=====================================================================
+** More Blocks **
+By Calinou, with the help of ShadowNinja and VanessaE.
+
+Copyright (c) 2011-2015 Calinou and contributors.
+Licensed under the zlib license. See LICENSE.md for more information.
+=====================================================================
+--]]
+
+moreblocks = {}
+
+local S
+if minetest.get_modpath("intllib") then
+ S = intllib.Getter()
+else
+ S = function(s) return s end
+end
+moreblocks.intllib = S
+
+local modpath = minetest.get_modpath("moreblocks")
+
+dofile(modpath .. "/config.lua")
+dofile(modpath .. "/circular_saw.lua")
+dofile(modpath .. "/stairsplus/init.lua")
+dofile(modpath .. "/nodes.lua")
+dofile(modpath .. "/redefinitions.lua")
+dofile(modpath .. "/crafting.lua")
+dofile(modpath .. "/aliases.lua")
+
+if minetest.setting_getbool("log_mods") then
+ minetest.log("action", S("[moreblocks] loaded."))
+end