2022-05-05 10:57:53 -04:00
|
|
|
mesecon.node_sound = {}
|
|
|
|
|
|
|
|
mesecon.sound_name = {}
|
|
|
|
|
|
|
|
mesecon.texture = {}
|
|
|
|
|
|
|
|
mesecon.dye_colors = {
|
|
|
|
"red", "green", "blue", "grey", "dark_grey", "yellow",
|
|
|
|
"orange", "white", "pink", "magenta", "cyan", "violet",
|
|
|
|
}
|
|
|
|
|
|
|
|
if minetest.get_modpath("default") then
|
|
|
|
minetest.log("info", "Mesecons: detected Minetest Game for game compatibility")
|
|
|
|
dofile(minetest.get_modpath("mesecons_gamecompat").."/compat_mtg.lua")
|
|
|
|
end
|
2024-08-16 16:15:10 +02:00
|
|
|
|
2025-02-03 14:17:15 +01:00
|
|
|
if minetest.get_modpath("mcl_redstone") then
|
2024-08-16 16:15:10 +02:00
|
|
|
minetest.log("info", "Mesecons: detected MineClonia Game for game compatibility")
|
2025-02-03 14:17:15 +01:00
|
|
|
dofile(minetest.get_modpath("mesecons_gamecompat").."/compat_mcla.lua")
|
2024-08-16 16:15:10 +02:00
|
|
|
end
|
2025-01-29 13:22:10 +01:00
|
|
|
|
|
|
|
if minetest.get_modpath("doors") then
|
|
|
|
dofile(minetest.get_modpath("mesecons_gamecompat").."/doors.lua")
|
|
|
|
end
|