mirror of
https://github.com/PaperMC/Paper.git
synced 2024-11-29 11:42:55 +01:00
SPIGOT-716: Fix regenerating chunks
This commit is contained in:
parent
30d751b362
commit
234e60735c
1 changed files with 4 additions and 0 deletions
|
@ -261,6 +261,10 @@ public class CraftWorld implements World {
|
|||
|
||||
private void chunkLoadPostProcess(net.minecraft.server.Chunk chunk, int cx, int cz) {
|
||||
if (chunk != null) {
|
||||
// moved from Chunk.<init>
|
||||
for (int k = 0; k < chunk.entitySlices.length; ++k) {
|
||||
chunk.entitySlices[k] = new EntitySlice(net.minecraft.server.Entity.class);
|
||||
}
|
||||
world.chunkProviderServer.chunks.put(LongHash.toLong(cx, cz), chunk);
|
||||
|
||||
chunk.addEntities();
|
||||
|
|
Loading…
Reference in a new issue