2019-02-25 10:39:24 +01:00
|
|
|
From e262239a6dbe5860f2a3172d3eeb5ec57b629941 Mon Sep 17 00:00:00 2001
|
2019-01-07 22:02:11 +01:00
|
|
|
From: connorhartley <vectrixu+gh@gmail.com>
|
|
|
|
Date: Mon, 7 Jan 2019 14:43:48 -0600
|
|
|
|
Subject: [PATCH] Workaround for vehicle tracking issue on disconnect
|
|
|
|
|
|
|
|
|
|
|
|
diff --git a/src/main/java/net/minecraft/server/EntityPlayer.java b/src/main/java/net/minecraft/server/EntityPlayer.java
|
2019-02-13 15:07:12 +01:00
|
|
|
index de17da992..0b7b2c22d 100644
|
2019-01-07 22:02:11 +01:00
|
|
|
--- a/src/main/java/net/minecraft/server/EntityPlayer.java
|
|
|
|
+++ b/src/main/java/net/minecraft/server/EntityPlayer.java
|
2019-02-13 15:07:12 +01:00
|
|
|
@@ -1113,6 +1113,13 @@ public class EntityPlayer extends EntityHuman implements ICrafting {
|
2019-01-07 22:02:11 +01:00
|
|
|
public void n() {
|
|
|
|
this.cB = true;
|
|
|
|
this.ejectPassengers();
|
|
|
|
+
|
|
|
|
+ // Paper start - Workaround an issue where the vehicle doesn't track the passenger disconnection dismount.
|
|
|
|
+ if (this.isPassenger() && this.getVehicle() instanceof EntityLiving) {
|
|
|
|
+ this.stopRiding();
|
|
|
|
+ }
|
|
|
|
+ // Paper end
|
|
|
|
+
|
|
|
|
if (this.sleeping) {
|
|
|
|
this.a(true, false, false);
|
|
|
|
}
|
|
|
|
--
|
2019-01-17 03:02:56 +01:00
|
|
|
2.20.1
|
2019-01-07 22:02:11 +01:00
|
|
|
|