mirror of
https://github.com/PaperMC/Paper.git
synced 2024-12-04 14:04:49 +01:00
SPIGOT-4757: Server hangs after teleporting
This commit is contained in:
parent
3e700e04e9
commit
b9a2a74105
1 changed files with 1 additions and 1 deletions
|
@ -426,7 +426,7 @@
|
|||
+
|
||||
+ CraftEntity craft = (CraftEntity) entity.getBukkitEntity().getVehicle();
|
||||
+ Entity orig = craft == null ? null : craft.getHandle();
|
||||
+ if (getBukkitEntity() instanceof Vehicle && entity.getBukkitEntity() instanceof LivingEntity && entity.world.isChunkLoaded((int) entity.locX >> 4, (int) entity.locZ >> 4)) {
|
||||
+ if (getBukkitEntity() instanceof Vehicle && entity.getBukkitEntity() instanceof LivingEntity) {
|
||||
+ VehicleEnterEvent event = new VehicleEnterEvent(
|
||||
+ (Vehicle) getBukkitEntity(),
|
||||
+ entity.getBukkitEntity()
|
||||
|
|
Loading…
Reference in a new issue