2019-08-05 18:35:40 +02:00
|
|
|
From 21758385418502c81a934bb3604ff94d733f5d85 Mon Sep 17 00:00:00 2001
|
2019-04-06 16:25:21 +02:00
|
|
|
From: Aikar <aikar@aikar.co>
|
|
|
|
Date: Sat, 6 Apr 2019 10:16:48 -0400
|
|
|
|
Subject: [PATCH] Optimize Captured TileEntity Lookup
|
|
|
|
|
|
|
|
upstream was doing a containsKey/get pattern, and always doing it at that.
|
|
|
|
that scenario is only even valid if were in the middle of a block place.
|
|
|
|
|
|
|
|
Optimize to check if the captured list even has values in it, and also to
|
|
|
|
just do a get call since the value can never be null.
|
|
|
|
|
|
|
|
diff --git a/src/main/java/net/minecraft/server/World.java b/src/main/java/net/minecraft/server/World.java
|
2019-07-20 06:01:24 +02:00
|
|
|
index dad0c893fd..dd2a9c6e59 100644
|
2019-04-06 16:25:21 +02:00
|
|
|
--- a/src/main/java/net/minecraft/server/World.java
|
|
|
|
+++ b/src/main/java/net/minecraft/server/World.java
|
2019-07-20 06:01:24 +02:00
|
|
|
@@ -1082,12 +1082,13 @@ public abstract class World implements IIBlockAccess, GeneratorAccess, AutoClose
|
2019-04-06 16:25:21 +02:00
|
|
|
return null;
|
|
|
|
} else {
|
|
|
|
// CraftBukkit start
|
|
|
|
- if (capturedTileEntities.containsKey(blockposition)) {
|
|
|
|
- return capturedTileEntities.get(blockposition);
|
|
|
|
+ TileEntity tileentity = null; // Paper
|
|
|
|
+ if (!capturedTileEntities.isEmpty() && (tileentity = capturedTileEntities.get(blockposition)) != null) { // Paper
|
|
|
|
+ return tileentity; // Paper
|
|
|
|
}
|
|
|
|
// CraftBukkit end
|
|
|
|
|
|
|
|
- TileEntity tileentity = null;
|
|
|
|
+ //TileEntity tileentity = null; // Paper - move up
|
|
|
|
|
2019-05-05 19:19:34 +02:00
|
|
|
if (this.tickingTileEntities) {
|
2019-07-20 06:01:24 +02:00
|
|
|
tileentity = this.A(blockposition);
|
2019-04-06 16:25:21 +02:00
|
|
|
--
|
2019-06-22 20:06:08 +02:00
|
|
|
2.22.0
|
2019-04-06 16:25:21 +02:00
|
|
|
|