pass seed into NMSChunkGeneratorDelegate

This commit is contained in:
dfsek 2022-05-31 00:26:05 -07:00
parent 2acfada4f8
commit 00e9ab4263

View File

@ -43,7 +43,7 @@ public class NMSChunkGeneratorDelegate extends ChunkGenerator {
public NMSChunkGeneratorDelegate(ChunkGenerator vanilla, ConfigPack pack, NMSBiomeProvider biomeProvider, CraftWorld world) {
super(vanilla.b, vanilla.e, biomeProvider);
super(vanilla.b, vanilla.e, biomeProvider, biomeProvider, world.getSeed());
this.delegate = pack.getGeneratorProvider().newInstance(pack);
this.vanilla = vanilla;
this.biomeSource = biomeProvider;