[SPIGOT-946] Begin making use of access transforms to simplify patching.
By: md_5 <git@md-5.net>
This commit is contained in:
@@ -10,24 +10,6 @@
|
||||
public class Chunk {
|
||||
|
||||
private static final Logger c = LogManager.getLogger();
|
||||
@@ -22,13 +25,13 @@
|
||||
private final int[] f;
|
||||
private final boolean[] g;
|
||||
private boolean h;
|
||||
- private final World world;
|
||||
- private final int[] heightMap;
|
||||
+ public final World world; // CraftBukkit - public
|
||||
+ public final int[] heightMap; // CraftBukkit - public
|
||||
public final int locX;
|
||||
public final int locZ;
|
||||
private boolean k;
|
||||
- private final Map<BlockPosition, TileEntity> tileEntities;
|
||||
- private final EntitySlice<Entity>[] entitySlices;
|
||||
+ public final Map<BlockPosition, TileEntity> tileEntities;
|
||||
+ public final EntitySlice<Entity>[] entitySlices; // CraftBukkit - public
|
||||
private boolean done;
|
||||
private boolean lit;
|
||||
private boolean p;
|
||||
@@ -40,6 +43,34 @@
|
||||
private int v;
|
||||
private ConcurrentLinkedQueue<BlockPosition> w;
|
||||
|
||||
Reference in New Issue
Block a user