mirror of
https://github.com/PaperMC/Paper.git
synced 2025-08-31 04:13:51 -07:00
Fix regenerating chunks not updating visually
By: Thinkofdeath <thinkofdeath@spigotmc.org>
This commit is contained in:
@@ -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;
|
||||
|
||||
|
Reference in New Issue
Block a user