Re-track players that dismount from other players

Fixes GH-265
This commit is contained in:
Zach Brown 2016-07-31 16:33:25 -05:00
parent af70722300
commit ae77393ad9
No known key found for this signature in database
GPG key ID: CC9DA35FC5450B76

View file

@ -0,0 +1,27 @@
From df7fd0dcde6b1ebb30586285d0fd93de291c624a Mon Sep 17 00:00:00 2001
From: Zach Brown <zach.brown@destroystokyo.com>
Date: Sun, 31 Jul 2016 16:33:03 -0500
Subject: [PATCH] Re-track players that dismount from other players
diff --git a/src/main/java/net/minecraft/server/EntityPlayer.java b/src/main/java/net/minecraft/server/EntityPlayer.java
index d084fc2..ec3a60a 100644
--- a/src/main/java/net/minecraft/server/EntityPlayer.java
+++ b/src/main/java/net/minecraft/server/EntityPlayer.java
@@ -648,6 +648,13 @@ public class EntityPlayer extends EntityHuman implements ICrafting {
if (entity1 != entity && this.playerConnection != null) {
this.playerConnection.a(this.locX, this.locY, this.locZ, this.yaw, this.pitch);
}
+ // Paper start - "Fixes" an issue in which the vehicle player would not be notified that the passenger dismounted
+ if (entity instanceof EntityPlayer) {
+ WorldServer worldServer = (WorldServer) entity.getWorld();
+ worldServer.tracker.untrackEntity(this);
+ worldServer.tracker.track(this);
+ }
+ // Paper end
}
--
2.9.0