Skip to content

Commit 5ef8349

Browse files
committed
Merge remote-tracking branch 'up/update/1.21.5' into update/1.21.5
2 parents eafb6c2 + ce3ede4 commit 5ef8349

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

paper-server/patches/sources/net/minecraft/server/level/ServerPlayer.java.patch

+1-1
Original file line numberDiff line numberDiff line change
@@ -1360,7 +1360,7 @@
13601360
+ // Paper end - Force entity dismount during teleportation
13611361
Entity vehicle = this.getVehicle();
13621362
- super.removeVehicle();
1363-
+ super.stopRiding(suppressCancellation); // Paper - Force entity dismount during teleportation
1363+
+ super.removeVehicle(suppressCancellation); // Paper - Force entity dismount during teleportation
13641364
if (vehicle instanceof LivingEntity livingEntity) {
13651365
for (MobEffectInstance mobEffectInstance : livingEntity.getActiveEffects()) {
13661366
this.connection.send(new ClientboundRemoveMobEffectPacket(vehicle.getId(), mobEffectInstance.getEffect()));

paper-server/patches/sources/net/minecraft/server/network/ServerGamePacketListenerImpl.java.patch

+2-2
Original file line numberDiff line numberDiff line change
@@ -835,7 +835,7 @@
835835
d3 = d - this.player.getX();
836836
d4 = d1 - this.player.getY();
837837
if (d4 > -0.5 || d4 < 0.5) {
838-
@@ -1050,23 +_,103 @@
838+
@@ -1050,23 +_,104 @@
839839

840840
d5 = d2 - this.player.getZ();
841841
d7 = d3 * d3 + d4 * d4 + d5 * d5;
@@ -862,7 +862,6 @@
862862
- || this.player.isSleeping()
863863
- || (!flag2 || !serverLevel.noCollision(this.player, boundingBox))
864864
- && !this.isPlayerCollidingWithAnythingNew(serverLevel, boundingBox, d, d1, d2)) {
865-
- this.player.absSnapTo(d, d1, d2, f, f1);
866865
+ } // Paper
867866
+ }
868867
+
@@ -944,6 +943,7 @@
944943
+ }
945944
+ }
946945
+ // CraftBukkit end
946+
this.player.absSnapTo(d, d1, d2, f, f1);
947947
boolean isAutoSpinAttack = this.player.isAutoSpinAttack();
948948
- this.clientIsFloating = d4 >= -0.03125
949949
+ this.clientIsFloating = verticalDelta >= -0.03125 // Paper - Decompile fix

0 commit comments

Comments
 (0)