summaryrefslogtreecommitdiffstats
path: root/nms-patches
diff options
context:
space:
mode:
authorThinkofdeath <thinkofdeath@spigotmc.org>2016-03-06 23:49:28 +0000
committerThinkofdeath <thinkofdeath@spigotmc.org>2016-03-06 23:50:19 +0000
commit0cd671108591fd6f16696379280b235fdbb7dca8 (patch)
treeef4ee0fefcfa1dec002ab1b9e6455927f3b8379b /nms-patches
parenta06e5cf8e82240893db66171331da647a3252c53 (diff)
downloadcraftbukkit-0cd671108591fd6f16696379280b235fdbb7dca8.tar
craftbukkit-0cd671108591fd6f16696379280b235fdbb7dca8.tar.gz
craftbukkit-0cd671108591fd6f16696379280b235fdbb7dca8.tar.lz
craftbukkit-0cd671108591fd6f16696379280b235fdbb7dca8.tar.xz
craftbukkit-0cd671108591fd6f16696379280b235fdbb7dca8.zip
Fix regenerating chunks not updating visually
Diffstat (limited to 'nms-patches')
-rw-r--r--nms-patches/PlayerChunk.patch8
1 files changed, 5 insertions, 3 deletions
diff --git a/nms-patches/PlayerChunk.patch b/nms-patches/PlayerChunk.patch
index 47fee211..312df273 100644
--- a/nms-patches/PlayerChunk.patch
+++ b/nms-patches/PlayerChunk.patch
@@ -1,6 +1,6 @@
--- a/net/minecraft/server/PlayerChunk.java
+++ b/net/minecraft/server/PlayerChunk.java
-@@ -4,16 +4,18 @@
+@@ -4,35 +4,48 @@
import com.google.common.collect.Iterables;
import com.google.common.collect.Lists;
import java.util.ArrayList;
@@ -19,8 +19,10 @@
+ public final List<EntityPlayer> c = Lists.newArrayList(); // CraftBukkit - public
private final ChunkCoordIntPair location;
private final short[] dirtyBlocks = new short[64];
- private Chunk chunk;
-@@ -22,17 +24,28 @@
+- private Chunk chunk;
++ public Chunk chunk; // CraftBukkit - public
+ private int dirtyCount;
+ private int h;
private long i;
private boolean done;