2020-05-06 11:48:49 +02:00
|
|
|
From 0000000000000000000000000000000000000000 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
|
2020-11-18 04:45:18 +01:00
|
|
|
index 6dab9aec89fa0aa0103bf3f3a63aaf5d52c4b660..1de7b182d40670b79887facdf502d6033c4ae697 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
|
2020-11-03 03:22:15 +01:00
|
|
|
@@ -1376,6 +1376,13 @@ public class EntityPlayer extends EntityHuman implements ICrafting {
|
2020-06-25 16:09:55 +02:00
|
|
|
public void p() {
|
2020-08-25 04:22:08 +02:00
|
|
|
this.ch = 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()) {
|
2019-12-12 17:20:43 +01:00
|
|
|
this.wakeup(true, false);
|
2019-01-07 22:02:11 +01:00
|
|
|
}
|