You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
index 30c10dfe3b70a2b137b372ae1aa144f17733455b..7feeb2663fc1a52a72e7c47ae6f575cdc8d668a7 100644
479
+
index 2002a211ada76f32fc2c66b51acbef1690278d0a..a8eaccde3ec9ed912cbc6df0b29e9f8136a46578 100644
480
480
--- a/net/minecraft/world/entity/Entity.java
481
481
+++ b/net/minecraft/world/entity/Entity.java
482
-
@@ -389,6 +389,15 @@ public abstract class Entity implements SyncedDataHolder, Nameable, EntityAccess
482
+
@@ -388,6 +388,15 @@ public abstract class Entity implements SyncedDataHolder, Nameable, EntityAccess
483
483
private final int despawnTime; // Paper - entity despawn time limit
484
484
public int totalEntityAge; // Paper - age-like counter for all entities
485
485
public final io.papermc.paper.entity.activation.ActivationType activationType = io.papermc.paper.entity.activation.ActivationType.activationTypeFor(this); // Paper - EAR 2/tracking ranges
@@ -492,10 +492,10 @@ index 30c10dfe3b70a2b137b372ae1aa144f17733455b..7feeb2663fc1a52a72e7c47ae6f575cd
492
492
+ public void inactiveTick() {
493
493
+ }
494
494
+ // Paper end - EAR 2
495
+
// CraftBukkit end
495
496
496
-
public void setOrigin(@javax.annotation.Nonnull org.bukkit.Location location) {
497
-
this.origin = location.toVector();
498
-
@@ -424,6 +433,13 @@ public abstract class Entity implements SyncedDataHolder, Nameable, EntityAccess
497
+
// Paper start
498
+
@@ -403,6 +412,13 @@ public abstract class Entity implements SyncedDataHolder, Nameable, EntityAccess
499
499
this.position = Vec3.ZERO;
500
500
this.blockPosition = BlockPos.ZERO;
501
501
this.chunkPosition = ChunkPos.ZERO;
@@ -509,7 +509,7 @@ index 30c10dfe3b70a2b137b372ae1aa144f17733455b..7feeb2663fc1a52a72e7c47ae6f575cd
509
509
SynchedEntityData.Builder builder = new SynchedEntityData.Builder(this);
@@ -187,7 +187,7 @@ index 342bc843c384761e883de861044f4f8930ae8763..14878690a88fd4de3e2c127086607e6c
187
187
if (io.papermc.paper.event.packet.PlayerChunkLoadEvent.getHandlerList().getRegisteredListeners().length > 0) {
188
188
new io.papermc.paper.event.packet.PlayerChunkLoadEvent(new org.bukkit.craftbukkit.CraftChunk(chunk), packetListener.getPlayer().getBukkitEntity()).callEvent();
java.util.function.Function<org.spigotmc.SpigotWorldConfig, // Spigot - create per world config
@@ -221,15 +221,15 @@ index f18d5dda1791206c6db241730e42c75d176420ec..770f2925f7026f7c33ba31ff6c557d8c
221
221
) {
222
222
this.spigotConfig = new org.spigotmc.SpigotWorldConfig(((net.minecraft.world.level.storage.PrimaryLevelData) levelData).getLevelName()); // Spigot
223
223
this.paperConfig = paperWorldConfigCreator.apply(this.spigotConfig); // Paper - create paper world config
224
-
@@ -295,6 +297,7 @@ public abstract class Level implements LevelAccessor, UUIDLookup<Entity>, AutoCl
224
+
@@ -291,6 +293,7 @@ public abstract class Level implements LevelAccessor, UUIDLookup<Entity>, AutoCl
225
+
public void onBorderSetDamageSafeZOne(WorldBorder border, double safeZoneRadius) {}
226
+
});
225
227
// CraftBukkit end
226
-
this.entityLimiter = new org.spigotmc.TickLimiter(this.spigotConfig.entityMaxTickTime);
227
-
this.tileLimiter = new org.spigotmc.TickLimiter(this.spigotConfig.tileMaxTickTime);
228
228
+ this.chunkPacketBlockController = this.paperConfig().anticheat.antiXray.enabled ? new io.papermc.paper.antixray.ChunkPacketBlockControllerAntiXray(this, executor) : io.papermc.paper.antixray.ChunkPacketBlockController.NO_OPERATION_INSTANCE; // Paper - Anti-Xray
229
229
}
230
230
231
231
// Paper start - Cancel hit for vanished players
232
-
@@ -499,6 +502,7 @@ public abstract class Level implements LevelAccessor, UUIDLookup<Entity>, AutoCl
232
+
@@ -496,6 +499,7 @@ public abstract class Level implements LevelAccessor, UUIDLookup<Entity>, AutoCl
233
233
snapshot.setFlags(flags); // Paper - always set the flag of the most recent call to mitigate issues with multiple update at the same pos with different flags
0 commit comments