From 6d4c9bd717f8bcd87c09b3a9afe08706773aea3c Mon Sep 17 00:00:00 2001
From: Jason Penilla <11360596+jpenilla@users.noreply.github.com>
Date: Mon, 6 Dec 2021 19:40:26 -0800
Subject: [PATCH] Fix unused EntitySectionStorage#getEntities(AABB, Consumer)
 method being broken

---
 patches/server/Avoid-hopper-searches-if-there-are-no-items.patch | 1 +
 1 file changed, 1 insertion(+)

diff --git a/patches/server/Avoid-hopper-searches-if-there-are-no-items.patch b/patches/server/Avoid-hopper-searches-if-there-are-no-items.patch
index 90d7860300..5cece0c572 100644
--- a/patches/server/Avoid-hopper-searches-if-there-are-no-items.patch
+++ b/patches/server/Avoid-hopper-searches-if-there-are-no-items.patch
@@ -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