From b2dbb226c2bda9ab36807bfe7e20b3c75fb2f24c Mon Sep 17 00:00:00 2001 From: Freeman Date: Wed, 18 Dec 2024 23:39:29 +0100 Subject: [PATCH] assert only MineClonia (not Voxelibre) --- mesecons_gamecompat/init.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mesecons_gamecompat/init.lua b/mesecons_gamecompat/init.lua index 95c088e..13b2b49 100644 --- a/mesecons_gamecompat/init.lua +++ b/mesecons_gamecompat/init.lua @@ -14,7 +14,7 @@ if minetest.get_modpath("default") then dofile(minetest.get_modpath("mesecons_gamecompat").."/compat_mtg.lua") end -if minetest.get_modpath("mcl_core") then +if minetest.get_modpath("mcl_core") and minetest.get_modpath("mcl_trees") then minetest.log("info", "Mesecons: detected MineClonia Game for game compatibility") dofile(minetest.get_modpath("mesecons_gamecompat").."/compat_mcl.lua") end