blob: d6792c4bcc55450a32e4786dc100bbd4ad567268 (
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/libpng license for code and CC BY-SA 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_mod") then
print(S("[moreblocks] loaded."))
end
|