From ecec225ae8f0a76ccb50a93b26adcc4a86453e49 Mon Sep 17 00:00:00 2001 From: Robotia Date: Sun, 31 Jan 2016 16:23:21 -0500 Subject: [PATCH] Actually do bc01a5699c6fbad20d2fe75f7ce0c9bc120ff343 --- .../world/NextTickListEntry.java.patch | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 patches/net/minecraft/world/NextTickListEntry.java.patch diff --git a/patches/net/minecraft/world/NextTickListEntry.java.patch b/patches/net/minecraft/world/NextTickListEntry.java.patch new file mode 100644 index 0000000..e2cb5a4 --- /dev/null +++ b/patches/net/minecraft/world/NextTickListEntry.java.patch @@ -0,0 +1,17 @@ +--- ../src-base/minecraft/net/minecraft/world/NextTickListEntry.java ++++ ../src-work/minecraft/net/minecraft/world/NextTickListEntry.java +@@ -38,7 +38,7 @@ + + public int hashCode() + { +- return (this.xCoord * 1024 * 1024 + this.zCoord * 1024 + this.yCoord) * 256; ++ return (int) (tickEntryID & 0xFFFFFFFF); + } + + public NextTickListEntry setScheduledTime(long p_77176_1_) +@@ -71,4 +71,4 @@ + { + return this.compareTo((NextTickListEntry)p_compareTo_1_); + } +-} ++}