--[[ TronBlocks: A series of blocks to help build a Tron environment ]] --The code follows a patter of colors as follows: white (plain), orange, blue, then green. the code is the same between them, except for the colors. dofile(minetest.get_modpath("tronblocks").."/aliases.lua") --register alternate names for nodes. dofile(minetest.get_modpath("tronblocks").."/crafting.lua") --craft recipes. dofile(minetest.get_modpath("tronblocks").."/noderegister.lua") --node registry. local enable_tronrealm_fullset = minetest.setting_getbool ("enable_tronrealm_fullset" ) -- support for moreblocks circular saw if enable_tronrealm_fullset and minetest.get_modpath ("moreblocks") then dofile (minetest.get_modpath ("tronblocks") .. "/sawsupport.lua") end