This repository has been archived on 2019-06-10. You can view files and clone it, but cannot push or open issues or pull requests.
scriptblocks/init.lua

17 lines
510 B
Lua

rmod = {} -- In case we need to allow other mods/files to access information.
local modpath = minetest.get_modpath("rmod")
dofile(modpath .. "/grate.lua")
dofile(modpath .. "/conveyor.lua")
dofile(modpath .. "/crate.lua")
dofile(modpath .. "/scriptblock.lua")
if minetest.get_modpath("mesecons") then
dofile(modpath .. "/meseconveyor.lua")
dofile(modpath .. "/mesegrate.lua")
end
if minetest.get_modpath("digilines") then
dofile(modpath .. "/digiconveyor.lua")
dofile(modpath .. "/digigrate.lua")
end