1
0

autodetect original mods to do not integrates the entities if are already presents

This commit is contained in:
mckaygerhard 2023-08-06 21:01:23 -04:00
parent d7f29a0fe1
commit f8f4d17f2f

View File

@ -36,7 +36,7 @@ if input then
end end
-- Animals if not minetest.get_modpath("mobs_animal") then
dofile(path .. "chicken.lua") -- JKmurray dofile(path .. "chicken.lua") -- JKmurray
dofile(path .. "cow.lua") -- KrupnoPavel dofile(path .. "cow.lua") -- KrupnoPavel
dofile(path .. "rat.lua") -- PilzAdam dofile(path .. "rat.lua") -- PilzAdam
@ -47,14 +47,19 @@ dofile(path .. "bunny.lua") -- ExeterDad
dofile(path .. "kitten.lua") -- Jordach/BFD dofile(path .. "kitten.lua") -- Jordach/BFD
dofile(path .. "penguin.lua") -- D00Med dofile(path .. "penguin.lua") -- D00Med
dofile(path .. "panda.lua") -- AspireMint dofile(path .. "panda.lua") -- AspireMint
end
if not minetest.get_modpath("mobs_doomed") or not minetest.get_modpath("dmobs") then
dofile(path .. "fox.lua") -- D00Med dofile(path .. "fox.lua") -- D00Med
dofile(path .. "owl.lua") -- D00Med dofile(path .. "owl.lua") -- D00Med
dofile(path .. "tortoise.lua") -- D00Med dofile(path .. "tortoise.lua") -- D00Med
end
if not minetest.get_modpath("mobs_monster") then
dofile(path .. "fire_spirit.lua") -- tenplus1 dofile(path .. "fire_spirit.lua") -- tenplus1
dofile(path .. "oerkki.lua") -- Pavel_S and PilzAdam (WTFPL) dofile(path .. "oerkki.lua") -- Pavel_S and PilzAdam (WTFPL)
dofile(path .. "lava_flan.lua") -- Lava Flan by Zeg9 (additional textures by JurajVajda) dofile(path .. "lava_flan.lua") -- Lava Flan by Zeg9 (additional textures by JurajVajda)
end
-- Load custom spawning -- Load custom spawning
if mobs.custom_spawn_animal then if mobs.custom_spawn_animal then