Mirror von
https://github.com/IntellectualSites/FastAsyncWorldEdit.git
synchronisiert 2024-11-07 20:10:06 +01:00
Don't paste ComplexEntityParts
Dieser Commit ist enthalten in:
Ursprung
b5f41501e4
Commit
4127e83749
@ -382,10 +382,11 @@ public class ForwardExtentCopy implements Operation {
|
|||||||
List<? extends Entity> entities;
|
List<? extends Entity> entities;
|
||||||
if (copyingEntities) {
|
if (copyingEntities) {
|
||||||
// filter players since they can't be copied
|
// filter players since they can't be copied
|
||||||
entities = source.getEntities(region)
|
entities = source.getEntities(region);
|
||||||
.stream()
|
entities.removeIf(entity -> {
|
||||||
.filter(e -> e.getType() != EntityTypes.PLAYER)
|
EntityProperties properties = entity.getFacet(EntityProperties.class);
|
||||||
.collect(Collectors.toList());
|
return properties != null && !properties.isPasteable();
|
||||||
|
});
|
||||||
} else {
|
} else {
|
||||||
entities = Collections.emptyList();
|
entities = Collections.emptyList();
|
||||||
}
|
}
|
||||||
|
Laden…
In neuem Issue referenzieren
Einen Benutzer sperren