aboutsummaryrefslogtreecommitdiff
path: root/init.lua
blob: 27cf9d5e4034243c70d5d26e89c2650ac7d2a797 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
--[[
-- More Blocks (moreblocks) by Calinou
-- Licensed under the zlib license for code and CC BY-SA 3.0 for textures, see LICENSE.txt for info.
--]]

moreblocks = {}

-- Load translation library if intllib is installed

local S = nil
if intllib then
	S = intllib.Getter()
else
	S = function(s) return s end
end
moreblocks.gettext = 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
	print(S("[moreblocks] loaded."))
end