2020-04-21 22:06:30 +00:00
|
|
|
From 80c540434a5694c897aa6e092ceadf571b309f92 Mon Sep 17 00:00:00 2001
|
2019-01-07 21:02:11 +00: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
|
2020-04-21 22:06:30 +00:00
|
|
|
index fd7d2fb1..cd981e0a 100644
|
2019-01-07 21:02:11 +00:00
|
|
|
--- a/src/main/java/net/minecraft/server/EntityPlayer.java
|
|
|
|
+++ b/src/main/java/net/minecraft/server/EntityPlayer.java
|
2020-04-21 22:06:30 +00:00
|
|
|
@@ -1289,6 +1289,13 @@ public class EntityPlayer extends EntityHuman implements ICrafting {
|
2019-01-07 21:02:11 +00:00
|
|
|
public void n() {
|
2019-12-12 16:20:43 +00:00
|
|
|
this.cq = true;
|
2019-01-07 21:02:11 +00:00
|
|
|
this.ejectPassengers();
|
|
|
|
+
|
|
|
|
+ // Paper start - Workaround an issue where the vehicle doesn't track the passenger disconnection dismount.
|
2019-02-28 07:43:38 +00:00
|
|
|
+ if (this.isPassenger() && this.getVehicle() instanceof EntityPlayer) {
|
2019-01-07 21:02:11 +00:00
|
|
|
+ this.stopRiding();
|
|
|
|
+ }
|
|
|
|
+ // Paper end
|
|
|
|
+
|
2019-05-05 17:19:34 +00:00
|
|
|
if (this.isSleeping()) {
|
2019-12-12 16:20:43 +00:00
|
|
|
this.wakeup(true, false);
|
2019-01-07 21:02:11 +00:00
|
|
|
}
|
|
|
|
--
|
2020-04-21 22:06:30 +00:00
|
|
|
2.25.1.windows.1
|
2019-01-07 21:02:11 +00:00
|
|
|
|