From 477ad73d60312b53e3dda5455788949c3ef2ca91 Mon Sep 17 00:00:00 2001 From: Ombridride Date: Sun, 12 Apr 2015 12:30:55 +0200 Subject: [PATCH] Update init.lua --- mods/mobs/init.lua | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/mods/mobs/init.lua b/mods/mobs/init.lua index 5d835927..2ca1c77f 100755 --- a/mods/mobs/init.lua +++ b/mods/mobs/init.lua @@ -25,13 +25,10 @@ dofile(minetest.get_modpath("mobs").."/wolf.lua") -- PilzAdam --dofile(minetest.get_modpath("mobs").."/lava_flan.lua") -- Zeg9 --Remplaced by Lava Slime dofile(minetest.get_modpath("mobs").."/mese_monster.lua") -- Zeg9 dofile(minetest.get_modpath("mobs").."/spider.lua") -- AspireMint - --- Migration to Mobs Redo API by TenPlus1 - --- load mod files dofile(minetest.get_modpath("mobs").."/greenslimes.lua") -- davedevils/TomasJLuis/TenPlus1 dofile(minetest.get_modpath("mobs").."/lavaslimes.lua") -- davedevils/TomasJLuis/TenPlus1 +-- begin slimes mobs compatibility changes -- cannot find mesecons?, craft glue instead if not minetest.get_modpath("mesecons_materials") then minetest.register_craftitem(":mesecons_materials:glue", { @@ -41,6 +38,7 @@ if not minetest.get_modpath("mesecons_materials") then end if minetest.setting_get("log_mods") then minetest.log("action", "Slimes loaded") end +-- end slimes mobs compatibility changes -- NPC dofile(minetest.get_modpath("mobs").."/npc.lua") -- TenPlus1