2019-07-23 21:17:32 +02:00
|
|
|
From 1e454ceca6edabaa552b773433802acbef6040cb 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-07-23 21:17:32 +02:00
|
|
|
index 75fddac7d..a191d6246 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-07-23 21:17:32 +02:00
|
|
|
@@ -1285,6 +1285,13 @@ public class EntityPlayer extends EntityHuman implements ICrafting {
|
2019-01-07 22:02:11 +01:00
|
|
|
public void n() {
|
2019-05-05 19:19:34 +02:00
|
|
|
this.ct = true;
|
2019-01-07 22:02:11 +01:00
|
|
|
this.ejectPassengers();
|
|
|
|
+
|
|
|
|
+ // Paper start - Workaround an issue where the vehicle doesn't track the passenger disconnection dismount.
|
2019-02-28 08:43:38 +01:00
|
|
|
+ if (this.isPassenger() && this.getVehicle() instanceof EntityPlayer) {
|
2019-01-07 22:02:11 +01:00
|
|
|
+ this.stopRiding();
|
|
|
|
+ }
|
|
|
|
+ // Paper end
|
|
|
|
+
|
2019-05-05 19:19:34 +02:00
|
|
|
if (this.isSleeping()) {
|
|
|
|
this.wakeup(true, false, false);
|
2019-01-07 22:02:11 +01:00
|
|
|
}
|
|
|
|
--
|
2019-06-16 12:15:21 +02:00
|
|
|
2.22.0
|
2019-01-07 22:02:11 +01:00
|
|
|
|