aboutsummaryrefslogtreecommitdiffhomepage
path: root/Spigot-Server-Patches/0149-Re-track-players-that-dismount-from-other-players.patch
diff options
context:
space:
mode:
Diffstat (limited to 'Spigot-Server-Patches/0149-Re-track-players-that-dismount-from-other-players.patch')
-rw-r--r--Spigot-Server-Patches/0149-Re-track-players-that-dismount-from-other-players.patch27
1 files changed, 27 insertions, 0 deletions
diff --git a/Spigot-Server-Patches/0149-Re-track-players-that-dismount-from-other-players.patch b/Spigot-Server-Patches/0149-Re-track-players-that-dismount-from-other-players.patch
new file mode 100644
index 0000000000..4da3b93c61
--- /dev/null
+++ b/Spigot-Server-Patches/0149-Re-track-players-that-dismount-from-other-players.patch
@@ -0,0 +1,27 @@
+From 470600a7c74fb5ee9f01d43ee827e576c98c722e Mon Sep 17 00:00:00 2001
+From: Zach Brown <[email protected]>
+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 ad1bb7bab..4e8efc549 100644
+--- a/src/main/java/net/minecraft/server/EntityPlayer.java
++++ b/src/main/java/net/minecraft/server/EntityPlayer.java
+@@ -654,6 +654,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.12.2
+