mirror of
https://github.com/FabricMC/fabric.git
synced 2025-04-05 19:47:00 -04:00
Check to make sure Feature isn't present before adding it (#4323)
This commit is contained in:
parent
1f6471e67c
commit
b1c29d8eb4
1 changed files with 8 additions and 1 deletions
|
@ -282,7 +282,14 @@ public class BiomeModificationContextImpl implements BiomeModificationContext {
|
|||
featureSteps.add(RegistryEntryList.of(Collections.emptyList()));
|
||||
}
|
||||
|
||||
featureSteps.set(index, plus(featureSteps.get(index), getEntry(features, entry)));
|
||||
RegistryEntry.Reference<PlacedFeature> feature = getEntry(features, entry);
|
||||
|
||||
// Don't add the feature if it's already present
|
||||
if (featureSteps.get(index).contains(feature)) {
|
||||
return;
|
||||
}
|
||||
|
||||
featureSteps.set(index, plus(featureSteps.get(index), feature));
|
||||
|
||||
// Ensure the list of flower features is up-to-date
|
||||
rebuildFeatures = true;
|
||||
|
|
Loading…
Add table
Reference in a new issue