summaryrefslogtreecommitdiffstats
path: root/nms-patches/EntityTracker.patch
diff options
context:
space:
mode:
Diffstat (limited to 'nms-patches/EntityTracker.patch')
-rw-r--r--nms-patches/EntityTracker.patch26
1 files changed, 26 insertions, 0 deletions
diff --git a/nms-patches/EntityTracker.patch b/nms-patches/EntityTracker.patch
new file mode 100644
index 00000000..54bdcca2
--- /dev/null
+++ b/nms-patches/EntityTracker.patch
@@ -0,0 +1,26 @@
+--- /home/matt/mc-dev-private//net/minecraft/server/EntityTracker.java 2015-02-26 22:40:22.719608138 +0000
++++ src/main/java/net/minecraft/server/EntityTracker.java 2015-02-26 22:40:22.719608138 +0000
+@@ -14,7 +14,7 @@
+ private static final Logger a = LogManager.getLogger();
+ private final WorldServer world;
+ private Set<EntityTrackerEntry> c = Sets.newHashSet();
+- private IntHashMap<EntityTrackerEntry> trackedEntities = new IntHashMap();
++ public IntHashMap<EntityTrackerEntry> trackedEntities = new IntHashMap(); // CraftBukkit - public
+ private int e;
+
+ public EntityTracker(WorldServer worldserver) {
+@@ -113,11 +113,12 @@
+ CrashReportSystemDetails crashreportsystemdetails = crashreport.a("Entity To Track");
+
+ crashreportsystemdetails.a("Tracking range", (Object) (i + " blocks"));
++ final int finalI = i; // CraftBukkit - fix decompile error
+ crashreportsystemdetails.a("Update interval", new Callable() {
+ public String a() throws Exception {
+- String s = "Once per " + i + " ticks";
++ String s = "Once per " + finalI + " ticks"; // CraftBukkit
+
+- if (i == Integer.MAX_VALUE) {
++ if (finalI == Integer.MAX_VALUE) { // CraftBukkit
+ s = "Maximum (" + s + ")";
+ }
+