Add back the getEntity Stuff since it seems to work fine

This commit is contained in:
Aurora
2020-07-01 19:28:38 +02:00
parent 8b3479d477
commit 34298f7dee
4 changed files with 14 additions and 3 deletions

View File

@ -63,4 +63,8 @@ public class WorldCopyClipboard extends ReadOnlyClipboard {
return hasBiomes;
}
@Override
public List<? extends Entity> getEntities(Region region) {
return getExtent().getEntities(region);
}
}