1
0
mirror of https://github.com/minetest-mods/mesecons.git synced 2025-03-26 05:50:30 +01:00

Move mesecons_doors to mesecons_gamecompat

This commit is contained in:
blut 2025-01-29 13:22:10 +01:00 committed by SmallJoker
parent 4eeab8f6f5
commit 28467fc3cb
3 changed files with 4 additions and 3 deletions
mesecons_doors
mesecons_gamecompat

@ -1,3 +0,0 @@
name = mesecons_doors
depends = mesecons, doors
optional_depends = xpanes

@ -18,3 +18,7 @@ if minetest.get_modpath("mcl_core") then
minetest.log("info", "Mesecons: detected MineClonia Game for game compatibility")
dofile(minetest.get_modpath("mesecons_gamecompat").."/compat_mcl.lua")
end
if minetest.get_modpath("doors") then
dofile(minetest.get_modpath("mesecons_gamecompat").."/doors.lua")
end