From 950d51d5e345a2a367693a36799a933ebed4d684 Mon Sep 17 00:00:00 2001 From: Byteflux Date: Fri, 10 Jul 2015 03:45:20 -0700 Subject: [PATCH] Remove obsolete patch --- ...ot-filter-out-large-getEntities-call.patch | 27 ------------------- 1 file changed, 27 deletions(-) delete mode 100644 Spigot-Server-Patches/Do-not-filter-out-large-getEntities-call.patch diff --git a/Spigot-Server-Patches/Do-not-filter-out-large-getEntities-call.patch b/Spigot-Server-Patches/Do-not-filter-out-large-getEntities-call.patch deleted file mode 100644 index 070a1b3622..0000000000 --- a/Spigot-Server-Patches/Do-not-filter-out-large-getEntities-call.patch +++ /dev/null @@ -1,27 +0,0 @@ -From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001 -From: Byteflux -Date: Tue, 16 Jun 2015 05:30:44 -0700 -Subject: [PATCH] Do not filter out large getEntities call - - -diff --git a/src/main/java/net/minecraft/server/World.java b/src/main/java/net/minecraft/server/World.java -index 0000000000000000000000000000000000000000..0000000000000000000000000000000000000000 100644 ---- a/src/main/java/net/minecraft/server/World.java -+++ b/src/main/java/net/minecraft/server/World.java -@@ -0,0 +0,0 @@ public abstract class World implements IBlockAccess { - int k = MathHelper.floor((axisalignedbb.c - 2.0D) / 16.0D); - int l = MathHelper.floor((axisalignedbb.f + 2.0D) / 16.0D); - -- // CraftBukkit start - filter out large ranges -- if (j - i > 10 || l - k > 10) { -- getServer().getLogger().log(java.util.logging.Level.WARNING, "Filtered out large getEntities call {0},{1} {2},{3}", new Object[]{i, j, k, j}); -- return arraylist; -- } -- // CraftBukkit end -- - for (int i1 = i; i1 <= j; ++i1) { - for (int j1 = k; j1 <= l; ++j1) { - if (this.isChunkLoaded(i1, j1, true)) { --- -1.9.5.msysgit.1 -