1
0
mirror of https://github.com/MinetestForFun/quests.git synced 2024-09-21 03:40:30 +02:00
quests/mod_integrations/mod_integrations.lua

18 lines
618 B
Lua

-- support for several inventory mods
if minetest.get_modpath("unified_inventory") then
dofile(minetest.get_modpath("quests") .. "/mod_integrations/unified_inventory.lua")
end
if minetest.get_modpath("inventory_plus") then
dofile(minetest.get_modpath("quests") .. "/mod_integrations/inventory_plus.lua")
end
--mod that displays notifications in the screen's center
if minetest.get_modpath("central_message") then
dofile(minetest.get_modpath("quests") .. "/mod_integrations/central_message.lua")
else -- define blank function so we can still use this in the code later
function quests.show_message(...) end
end