Feature request: dimension / generator specific spawns
keybounce opened this issue ยท 5 comments
I'd like to be able to make some spawns dependent on dimension, or on world generator / chunk provider, if possible.
The goal: Have some bees that only spawn in mystcraft ages, other that only spawn in RfTools dimensions, others that only spawn in specific dimensions.
This is for a server that is going to be based around exploration in multiple worlds (with different gating)
Thank you.
And, I thought ChunkProviderMyst was the chunk provider for mystcraft. Did that change? I last checked in 164.
I haven't looked at it too deeply, just poked around with a debugger running with both mods - all dimensions (both vanilla and modded) were using net.minecraft.world.gen.ChunkProviderServer
It seems that they use the same chunk provider as vanilla however i could detect the world provider which is different.
I'll add this soon(tm)
For the record the world provider classes are:
- MystCraft - com.xcompwiz.mystcraft.world.WorldProviderMyst
- RFTools - mcjty.rftools.dimension.world.GenericWorldProvider
- Vanilla - net.minecraft.world.WorldProviderSurface / net.minecraft.world.WorldProviderEnd / net.minecraft.world.WorldProviderHell
ChunkProviderServer is the "read data from disk" class.
ChunkProviderGenerate is the vanilla "create the chunk" class