mirror of
https://github.com/Creators-of-Create/Create.git
synced 2024-11-10 20:45:10 +01:00
Merge branch 'mc1.15/dev' into mc1.16/dev
This commit is contained in:
commit
3b05e06d35
@ -58,14 +58,7 @@ public class WrappedChunkProvider extends AbstractChunkProvider {
|
||||
if (chunks == null)
|
||||
return null;
|
||||
|
||||
WrappedChunk chunk = chunks.get(pos);
|
||||
|
||||
if (chunk == null) {
|
||||
chunk = new WrappedChunk(world, x, z);
|
||||
chunks.put(pos, chunk);
|
||||
}
|
||||
|
||||
return chunk;
|
||||
return chunks.computeIfAbsent(pos, $ -> new WrappedChunk(world, x, z));
|
||||
}
|
||||
|
||||
@Override
|
||||
|
@ -72,6 +72,11 @@ public class WrappedChunk implements IChunk {
|
||||
return sections;
|
||||
}
|
||||
|
||||
@Override
|
||||
public ChunkStatus getStatus() {
|
||||
return ChunkStatus.LIGHT;
|
||||
}
|
||||
|
||||
@Nullable
|
||||
@Override
|
||||
public BlockState setBlockState(BlockPos p_177436_1_, BlockState p_177436_2_, boolean p_177436_3_) {
|
||||
@ -139,11 +144,6 @@ public class WrappedChunk implements IChunk {
|
||||
return false;
|
||||
}
|
||||
|
||||
@Override
|
||||
public ChunkStatus getStatus() {
|
||||
return null;
|
||||
}
|
||||
|
||||
@Override
|
||||
public void removeTileEntity(BlockPos p_177425_1_) {
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user