2021-09-01 11:54:41 +02:00
|
|
|
From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001
|
|
|
|
From: Nassim Jahnke <nassim@njahnke.dev>
|
|
|
|
Date: Tue, 31 Aug 2021 17:05:27 +0200
|
|
|
|
Subject: [PATCH] Configurable feature seeds
|
|
|
|
|
|
|
|
Co-authored-by: Thonk <30448663+ExcessiveAmountsOfZombies@users.noreply.github.com>
|
|
|
|
|
2021-11-25 13:05:53 +01:00
|
|
|
diff --git a/src/main/java/net/minecraft/world/level/chunk/ChunkGenerator.java b/src/main/java/net/minecraft/world/level/chunk/ChunkGenerator.java
|
2021-09-01 11:54:41 +02:00
|
|
|
index 0000000000000000000000000000000000000000..0000000000000000000000000000000000000000 100644
|
2021-11-25 13:05:53 +01:00
|
|
|
--- a/src/main/java/net/minecraft/world/level/chunk/ChunkGenerator.java
|
|
|
|
+++ b/src/main/java/net/minecraft/world/level/chunk/ChunkGenerator.java
|
2022-06-08 13:44:30 +02:00
|
|
|
@@ -0,0 +0,0 @@ public abstract class ChunkGenerator {
|
2021-11-26 15:17:28 +01:00
|
|
|
return (String) optional.orElseGet(placedfeature::toString);
|
|
|
|
};
|
2021-11-25 13:05:53 +01:00
|
|
|
|
2021-11-26 15:17:28 +01:00
|
|
|
- seededrandom.setFeatureSeed(i, l1, l);
|
2024-01-19 12:30:04 +01:00
|
|
|
+ // Paper start - Configurable feature seeds; change populationSeed used in random
|
2021-11-25 13:05:53 +01:00
|
|
|
+ long featurePopulationSeed = i;
|
2022-06-09 13:16:00 +02:00
|
|
|
+ final long configFeatureSeed = generatoraccessseed.getMinecraftWorld().paperConfig().featureSeeds.features.getLong(placedfeature.feature());
|
2021-11-25 13:05:53 +01:00
|
|
|
+ if (configFeatureSeed != -1) {
|
|
|
|
+ featurePopulationSeed = seededrandom.setDecorationSeed(configFeatureSeed, blockposition.getX(), blockposition.getZ()); // See seededrandom.setDecorationSeed from above
|
|
|
|
+ }
|
2021-11-26 15:17:28 +01:00
|
|
|
+ seededrandom.setFeatureSeed(featurePopulationSeed, l1, l);
|
2024-01-19 12:30:04 +01:00
|
|
|
+ // Paper end - Configurable feature seeds
|
2021-09-01 11:54:41 +02:00
|
|
|
|
2021-11-26 15:17:28 +01:00
|
|
|
try {
|
|
|
|
generatoraccessseed.setCurrentlyGenerating(supplier1);
|