3 local path
= minetest
.get_modpath(minetest
.get_current_modname())
5 -- Trivial blocks (full definition included; almost all nodes are full cubes)
6 dofile(path
.."/brickblocks.lua") -- Bricks and blocks
7 dofile(path
.."/cobble.lua") -- Cobblestone
8 dofile(path
.."/seethrough.lua") -- Glasslike nodes
9 dofile(path
.."/specials.lua") -- Nodes with something special (or misc. blocks)
11 -- Non-trivial blocks (definition require API)
12 dofile(path
.."/stairslabs.lua") -- Stairs and slabs
13 dofile(path
.."/wallfences.lua") -- Walls and fences
14 dofile(path
.."/xpanes.lua") -- Panes (xpanes mod)
15 dofile(path
.."/doors.lua") -- Doors and trapdoors
16 dofile(path
.."/ladders.lua") -- Ladders
18 -- Support for other mods
19 dofile(path
.."/extras.lua") -- Additional blocks and crafts for optional mods
20 dofile(path
.."/awards.lua") -- Achievements for the awards mod
23 dofile(path
.."/compat_xdecor.lua") -- xdecor compability
24 dofile(path
.."/aliases.lua") -- Aliases for compability