Disable shulker natural spawning

This commit is contained in:
cora 2022-09-11 19:55:13 +02:00 committed by Gitea
parent 2818d51aaa
commit a10ef6dc73
2 changed files with 9 additions and 3 deletions

View File

@ -632,7 +632,12 @@ mcl_mobs:spawn_specific(
"end",
"ground",
{
"End"
"End",
"EndIsland",
"EndMidlands",
"EndBarrens",
"EndBorder",
"EndSmallIslands"
},
0,
minetest.LIGHT_MAX+1,
@ -797,7 +802,7 @@ mcl_mobs:spawn_specific(
"ground",
{
"Nether",
"SoulsandVall3ey",
"SoulsandValley",
},
0,
11,

View File

@ -177,7 +177,7 @@ mcl_mobs:register_arrow("mobs_mc:shulkerbullet", {
mcl_mobs:register_egg("mobs_mc:shulker", S("Shulker"), "mobs_mc_spawn_icon_shulker.png", 0)
--[[
mcl_mobs:spawn_specific(
"mobs_mc:shulker",
"end",
@ -192,3 +192,4 @@ minetest.LIGHT_MAX+1,
2,
mcl_vars.mg_end_min,
mcl_vars.mg_end_max)
--]]