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.
2017-08-03 22:35:32 +02:00
|
|
|
rmod = {} -- In case we need to allow other mods/files to access information.
|
2017-07-30 22:24:43 +02:00
|
|
|
local modpath = minetest.get_modpath("rmod")
|
|
|
|
|
|
|
|
dofile(modpath .. "/grate.lua")
|
2017-07-31 17:56:48 +02:00
|
|
|
dofile(modpath .. "/conveyor.lua")
|
2017-07-30 22:24:43 +02:00
|
|
|
dofile(modpath .. "/crate.lua")
|
2017-08-06 06:46:25 +02:00
|
|
|
dofile(modpath .. "/scriptblock.lua")
|
2017-08-03 16:26:34 +02:00
|
|
|
|
|
|
|
if minetest.get_modpath("mesecons") then
|
|
|
|
dofile(modpath .. "/meseconveyor.lua")
|
2017-08-03 22:35:32 +02:00
|
|
|
dofile(modpath .. "/mesegrate.lua")
|
2017-08-03 16:26:34 +02:00
|
|
|
end
|
|
|
|
if minetest.get_modpath("digilines") then
|
|
|
|
dofile(modpath .. "/digiconveyor.lua")
|
2017-08-03 22:35:32 +02:00
|
|
|
dofile(modpath .. "/digigrate.lua")
|
2017-08-03 16:26:34 +02:00
|
|
|
end
|