implement entities in paste -e

This commit is contained in:
Aurora
2020-07-03 19:52:55 +02:00
parent 34298f7dee
commit 94b1233d98
5 changed files with 59 additions and 27 deletions

View File

@ -200,6 +200,11 @@ public class BlockArrayClipboard implements Clipboard {
return getParent().getEntities(region);
}
@Override
public List<? extends Entity> getEntities() {
return getParent().getEntities();
}
@Override
@Nullable
public Entity createEntity(Location location, BaseEntity entity) {