mirror of
https://github.com/minetest-mods/mesecons.git
synced 2025-06-29 14:20:25 +02:00
Make modpack mostly independent from MTG (#607)
This commit is contained in:
committed by
GitHub
parent
f4070d3e64
commit
dfa43d6c0c
15
mesecons_gamecompat/init.lua
Normal file
15
mesecons_gamecompat/init.lua
Normal file
@ -0,0 +1,15 @@
|
||||
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
|
Reference in New Issue
Block a user