Darkhax-Minecraft / MobStages

Allows mob spawning to be put into stages
GNU Lesser General Public License v2.1
3 stars 8 forks source link

Villagers still spawn, even when staged. #3

Closed ofseaandstars closed 6 years ago

ofseaandstars commented 6 years ago

Villagers will still spawn, even when staged correctly.

Here is my staging code: mods.MobStages.addStage("nether_unlock", "minecraft:villager");

Here is crafttweaker log saying it's staged correctly: [INITIALIZATION][CLIENT][INFO] Adding minecraft:villager to stage.nether_unlock

Here is the print out in game saying I do not have the stage: image

Here's a screenshot of a villager (taken just after the stage printout): image

I was wondering if it was something to do with the villager professions. Regardless, they are being marked as stage, but still spawning.

Versions:

Forge: 14.23.4.2756 Game Stages: 2.0.98 Mob Stages: 2.0.8 CraftTweaker: 4.1.9

Darkhax commented 6 years ago

Villagers don't actually spawn, they are generated as part of the world generation. Villagers have no spawning conditions, and because of that you can not disable them from spawning.

ofseaandstars commented 6 years ago

Ah, I see. That's a shame, but I suppose there's not much I can do about that. Thank you for your quick response!