mirror of
https://github.com/PaperMC/Paper.git
synced 2025-08-01 20:52:12 -07:00
Fix unused EntitySectionStorage#getEntities(AABB, Consumer) method being broken
This commit is contained in:
@@ -84,6 +84,7 @@ index 0000000000000000000000000000000000000000..00000000000000000000000000000000
|
|||||||
|
|
||||||
public void getEntities(AABB box, Consumer<T> action) {
|
public void getEntities(AABB box, Consumer<T> action) {
|
||||||
+ // Paper start
|
+ // Paper start
|
||||||
|
+ this.getEntities(box, action, false);
|
||||||
+ }
|
+ }
|
||||||
+ public void getEntities(AABB box, Consumer<T> action, boolean isContainerSearch) {
|
+ public void getEntities(AABB box, Consumer<T> action, boolean isContainerSearch) {
|
||||||
+ // Paper end
|
+ // Paper end
|
||||||
|
Reference in New Issue
Block a user