Check to make sure Feature isn't present before adding it ()

This commit is contained in:
Joseph T. McQuigg 2024-12-30 08:10:38 -05:00 committed by GitHub
parent 1f6471e67c
commit b1c29d8eb4
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -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;