geforkt von Mirrors/FastAsyncWorldEdit
Removed cast to ResettableExtent in for loop.
I have no idea why we were casting it when all objects in the loop were ResettableExtents in the first place.
Dieser Commit ist enthalten in:
Ursprung
c87a19da5a
Commit
6bfc3ceb95
@ -48,10 +48,8 @@ public class RandomTransform extends SelectTransform {
|
||||
collection = RandomCollection.of(weights, random);
|
||||
extents = new LinkedHashSet<>(weights.keySet());
|
||||
}
|
||||
for (AbstractDelegateExtent current : extents) {
|
||||
if (current instanceof ResettableExtent) {
|
||||
((ResettableExtent) current).setExtent(extent);
|
||||
}
|
||||
for (ResettableExtent current : extents) {
|
||||
current.setExtent(extent);
|
||||
}
|
||||
return this;
|
||||
}
|
||||
|
Laden…
In neuem Issue referenzieren
Einen Benutzer sperren