Dieser Commit ist enthalten in:
Ursprung
901fe54754
Commit
c9b15b6aa6
@ -85,6 +85,8 @@ public class REntity {
|
|||||||
|
|
||||||
this.itemSlots = entityType == EntityType.PLAYER ? new HashMap<>() : null;
|
this.itemSlots = entityType == EntityType.PLAYER ? new HashMap<>() : null;
|
||||||
|
|
||||||
|
this.noGravity = false;
|
||||||
|
|
||||||
server.addEntity(this);
|
server.addEntity(this);
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -190,7 +192,8 @@ public class REntity {
|
|||||||
|
|
||||||
public void setNoGravity(boolean noGravity) {
|
public void setNoGravity(boolean noGravity) {
|
||||||
this.noGravity = noGravity;
|
this.noGravity = noGravity;
|
||||||
server.updateEntity(this,getDataWatcherPacket(noGravityDataWatcher,getEntityStatus()));
|
if(Core.getVersion() > 8)
|
||||||
|
server.updateEntity(this,getDataWatcherPacket(noGravityDataWatcher,noGravity));
|
||||||
}
|
}
|
||||||
|
|
||||||
private static int spawnPacketOffset() {
|
private static int spawnPacketOffset() {
|
||||||
@ -240,7 +243,7 @@ public class REntity {
|
|||||||
}
|
}
|
||||||
|
|
||||||
if(noGravity)
|
if(noGravity)
|
||||||
packetSink.accept(getDataWatcherPacket(noGravityDataWatcher,getEntityStatus()));
|
packetSink.accept(getDataWatcherPacket(noGravityDataWatcher,this.noGravity));
|
||||||
}
|
}
|
||||||
|
|
||||||
void tick() {
|
void tick() {
|
||||||
|
In neuem Issue referenzieren
Einen Benutzer sperren