Potentialspawn Is Creating Hundreds of Mobs with no Cap
Closed this issue ยท 3 comments
Someone else posted a similar topic regarding passive mobs, but I am unsure if the mob spawning rule is different, or if changes have been made since that issue. When I add some mobs, like Blazes or Ghasts to spawn in the overworld, they spawn nonstop until hundreds of them are filling your screen. See the attached screenshot.
It also completely ignores the other two mobs in the syntax... in my case it isn't spawning any Ender Dragon Zombies or Ghast mobs... just tons and tons of Blaze... despite the weight for both of these mobs being higher than Blaze.
This is my potentialspawn file:
[
{
"dimension": 0,
"mobs": [
{
"mob": "Blaze",
"weight": 5,
"groupcountmin": 1,
"groupcountmax": 2
},
{
"mob": "armorplus.ender_dragon_zombie",
"weight": 15,
"groupcountmin": 1,
"groupcountmax": 2
},
{
"mob": "Ghast",
"weight": 25,
"groupcountmin": 1,
"groupcountmax": 2
}
]
}
]
Well without additional restrictions in spawn.json there is nothing preventing the blazes from keeping spawning. So you will want to add some restrictions to that.
Also is "armorplus.ender_dragon_zombie" the right name? Shouldn't that be a : instead of a .?