#How do i stop beehives from spawning?
1 messages · Page 1 of 1 (latest)
you can probably just go through all the features that spawn bee hives and remove the lines that add the hives
https://github.com/misode/mcmeta/tree/data/data/minecraft/worldgen/configured_feature (these are the files in an online repository mirroring the vanilla files)
so in theory if i placed a filter block on anything with _bees that should stop them?
that might break stuff
since they are referenced everywhere
and these references would point into nothing
the placed features tell the game where and how the things are placed, the configured features tell the game what to place
so you need to look in the configured features
and the biomes then have a list of placed features that spawn in the biome
ahhh i see, thank you
ok i believe i got it working, tysm