[SPIGOT-946] Begin making use of access transforms to simplify patching.

By: md_5 <git@md-5.net>
This commit is contained in:
CraftBukkit/Spigot
2015-06-06 19:33:48 +10:00
parent ae714e4861
commit 58abe21c5a
47 changed files with 76 additions and 632 deletions

View File

@@ -18,24 +18,6 @@
public class EntityPlayer extends EntityHuman implements ICrafting {
private static final Logger bH = LogManager.getLogger();
@@ -23,14 +34,14 @@
public double d;
public double e;
public final List<ChunkCoordIntPair> chunkCoordIntPairQueue = Lists.newLinkedList();
- private final List<Integer> removeQueue = Lists.newLinkedList();
+ public final List<Integer> removeQueue = Lists.newLinkedList(); // CraftBukkit - public
private final ServerStatisticManager bK;
private float bL = Float.MIN_VALUE;
private float bM = -1.0E8F;
private int bN = -99999999;
private boolean bO = true;
- private int lastSentExp = -99999999;
- private int invulnerableTicks = 60;
+ public int lastSentExp = -99999999; // CraftBukkit - public
+ public int invulnerableTicks = 60; // CraftBukkit - public
private EntityHuman.EnumChatVisibility bR;
private boolean bS = true;
private long bT = System.currentTimeMillis();
@@ -40,6 +51,18 @@
public int ping;
public boolean viewingCredits;