mirror of
https://github.com/PaperMC/Paper.git
synced 2024-11-24 08:06:41 +01:00
Add vehicle tracking workaround from 1.12.2 branch
This commit is contained in:
parent
797c46bd27
commit
a6ee4b9965
1 changed files with 27 additions and 0 deletions
|
@ -0,0 +1,27 @@
|
||||||
|
From 4e5047aa15ef2bd2dcd40434ef0b97a2bdc8d7d4 Mon Sep 17 00:00:00 2001
|
||||||
|
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
|
||||||
|
index 32557caf2..596478120 100644
|
||||||
|
--- a/src/main/java/net/minecraft/server/EntityPlayer.java
|
||||||
|
+++ b/src/main/java/net/minecraft/server/EntityPlayer.java
|
||||||
|
@@ -1106,6 +1106,13 @@ public class EntityPlayer extends EntityHuman implements ICrafting {
|
||||||
|
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);
|
||||||
|
}
|
||||||
|
--
|
||||||
|
2.20.1
|
||||||
|
|
Loading…
Reference in a new issue