diff options
Diffstat (limited to 'Spigot-Server-Patches/0159-Chunk-registration-fixes.patch')
-rw-r--r-- | Spigot-Server-Patches/0159-Chunk-registration-fixes.patch | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/Spigot-Server-Patches/0159-Chunk-registration-fixes.patch b/Spigot-Server-Patches/0159-Chunk-registration-fixes.patch index 84c209e444..59ba8cd89d 100644 --- a/Spigot-Server-Patches/0159-Chunk-registration-fixes.patch +++ b/Spigot-Server-Patches/0159-Chunk-registration-fixes.patch @@ -1,4 +1,4 @@ -From 3cf59989e5b9a17e4186943fa44ef2b90ce192d8 Mon Sep 17 00:00:00 2001 +From 2f9b6710969db1be24ea204412272757407d816e Mon Sep 17 00:00:00 2001 From: Aikar <[email protected]> Date: Wed, 21 Sep 2016 22:54:28 -0400 Subject: [PATCH] Chunk registration fixes @@ -8,10 +8,10 @@ World checks and the Chunk Add logic are inconsistent on how Y > 256, < 0, is tr Keep them consistent diff --git a/src/main/java/net/minecraft/server/World.java b/src/main/java/net/minecraft/server/World.java -index ae1edb009..ee3f14cca 100644 +index 4b6275a8..416c484b 100644 --- a/src/main/java/net/minecraft/server/World.java +++ b/src/main/java/net/minecraft/server/World.java -@@ -1760,7 +1760,7 @@ public abstract class World implements IBlockAccess { +@@ -1762,7 +1762,7 @@ public abstract class World implements IBlockAccess { } int k = MathHelper.floor(entity.locX / 16.0D); @@ -21,5 +21,5 @@ index ae1edb009..ee3f14cca 100644 if (!entity.aa || entity.ab != k || entity.ac != l || entity.ad != i1) { -- -2.11.0 +2.12.0.windows.1 |