13
0
geforkt von Mirrors/Paper

Fix unused EntitySectionStorage#getEntities(AABB, Consumer) method being broken

Dieser Commit ist enthalten in:
Jason Penilla 2021-12-06 19:40:26 -08:00
Ursprung f065566460
Commit 6d4c9bd717

Datei anzeigen

@ -84,6 +84,7 @@ index 0000000000000000000000000000000000000000..00000000000000000000000000000000
public void getEntities(AABB box, Consumer<T> action) {
+ // Paper start
+ this.getEntities(box, action, false);
+ }
+ public void getEntities(AABB box, Consumer<T> action, boolean isContainerSearch) {
+ // Paper end