mirror of
https://github.com/PaperMC/Paper.git
synced 2024-12-28 23:38:25 +01:00
Fix merge conflicts from access transform update.
This commit is contained in:
parent
0f48b03bbc
commit
7e51dc4e18
3 changed files with 8 additions and 8 deletions
|
@ -15,9 +15,9 @@ index 0000000000000000000000000000000000000000..00000000000000000000000000000000
|
|||
@@ -0,0 +0,0 @@ public abstract class Entity implements ICommandListener {
|
||||
public int ticksLived;
|
||||
public int maxFireTicks;
|
||||
public int fireTicks; // CraftBukkit - public
|
||||
public int fireTicks;
|
||||
- protected boolean inWater;
|
||||
+ public boolean inWater; // Spigot - protected -> public
|
||||
+ public boolean inWater; // Spigot - protected -> public // PAIL
|
||||
public int noDamageTicks;
|
||||
protected boolean justCreated;
|
||||
protected boolean fireProof;
|
||||
|
@ -25,7 +25,7 @@ index 0000000000000000000000000000000000000000..00000000000000000000000000000000
|
|||
private double ar;
|
||||
private double as;
|
||||
- public boolean ad;
|
||||
+ public boolean ad; public boolean isAddedToChunk() { return ad; } // Spigot
|
||||
+ public boolean ad; public boolean isAddedToChunk() { return ad; } // Spigot // PAIL
|
||||
public int ae;
|
||||
public int af;
|
||||
public int ag;
|
||||
|
@ -107,7 +107,7 @@ index 0000000000000000000000000000000000000000..00000000000000000000000000000000
|
|||
public Entity shooter;
|
||||
@@ -0,0 +0,0 @@ public class EntityArrow extends Entity implements IProjectile {
|
||||
private double damage = 2.0D;
|
||||
public int knockbackStrength; // CraftBukkit - public
|
||||
public int knockbackStrength;
|
||||
|
||||
+ // Spigot Start
|
||||
+ @Override
|
||||
|
@ -130,7 +130,7 @@ index 0000000000000000000000000000000000000000..00000000000000000000000000000000
|
|||
+++ b/src/main/java/net/minecraft/server/EntityFireworks.java
|
||||
@@ -0,0 +0,0 @@ public class EntityFireworks extends Entity {
|
||||
private int ticksFlown;
|
||||
public int expectedLifespan; // CraftBukkit - public
|
||||
public int expectedLifespan;
|
||||
|
||||
+ // Spigot Start
|
||||
+ @Override
|
||||
|
|
|
@ -108,9 +108,9 @@ index 0000000000000000000000000000000000000000..00000000000000000000000000000000
|
|||
@@ -0,0 +0,0 @@ public class NetworkManager extends SimpleChannelInboundHandler<Packet> {
|
||||
private final Queue<NetworkManager.QueuedPacket> i = Queues.newConcurrentLinkedQueue();
|
||||
private final ReentrantReadWriteLock j = new ReentrantReadWriteLock();
|
||||
public Channel channel; // CraftBukkit - public
|
||||
public Channel channel;
|
||||
- private SocketAddress l;
|
||||
+ // Spigot Start
|
||||
+ // Spigot Start // PAIL
|
||||
+ public SocketAddress l;
|
||||
+ public java.util.UUID spoofedUUID;
|
||||
+ public com.mojang.authlib.properties.Property[] spoofedProfile;
|
||||
|
|
|
@ -12,7 +12,7 @@ index 0000000000000000000000000000000000000000..00000000000000000000000000000000
|
|||
public final int locZ;
|
||||
private boolean k;
|
||||
public final Map<BlockPosition, TileEntity> tileEntities;
|
||||
- public final EntitySlice<Entity>[] entitySlices; // CraftBukkit - public
|
||||
- public final EntitySlice<Entity>[] entitySlices;
|
||||
+ public final List<Entity>[] entitySlices; // Spigot
|
||||
private boolean done;
|
||||
private boolean lit;
|
||||
|
|
Loading…
Reference in a new issue