2020-01-28 01:16:53 +01:00
|
|
|
From 0c006970ef9bbf08b0d317a44df34104f25612e8 Mon Sep 17 00:00:00 2001
|
2016-07-31 23:33:25 +02:00
|
|
|
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
|
2020-01-28 01:16:53 +01:00
|
|
|
index d4bba876d0..ae1f0d5783 100644
|
2016-07-31 23:33:25 +02:00
|
|
|
--- a/src/main/java/net/minecraft/server/EntityPlayer.java
|
|
|
|
+++ b/src/main/java/net/minecraft/server/EntityPlayer.java
|
2020-01-28 01:16:53 +01:00
|
|
|
@@ -997,6 +997,14 @@ public class EntityPlayer extends EntityHuman implements ICrafting {
|
2020-01-13 23:12:54 +01:00
|
|
|
if (entity1 != entity && this.playerConnection != null) {
|
2019-12-12 19:45:00 +01:00
|
|
|
this.playerConnection.a(this.locX(), this.locY(), this.locZ(), this.yaw, this.pitch);
|
2016-07-31 23:33:25 +02:00
|
|
|
}
|
|
|
|
+ // Paper start - "Fixes" an issue in which the vehicle player would not be notified that the passenger dismounted
|
|
|
|
+ if (entity instanceof EntityPlayer) {
|
2019-05-06 02:57:14 +02:00
|
|
|
+ // TODO verify this solution
|
2016-07-31 23:33:25 +02:00
|
|
|
+ WorldServer worldServer = (WorldServer) entity.getWorld();
|
2019-05-06 02:57:14 +02:00
|
|
|
+ worldServer.getChunkProvider().playerChunkMap.removeEntity(this);
|
|
|
|
+ worldServer.getChunkProvider().playerChunkMap.addEntity(this);
|
2016-07-31 23:33:25 +02:00
|
|
|
+ }
|
|
|
|
+ // Paper end
|
2020-01-13 23:12:54 +01:00
|
|
|
|
2019-12-12 19:45:00 +01:00
|
|
|
}
|
2016-07-31 23:33:25 +02:00
|
|
|
|
2020-01-28 01:16:53 +01:00
|
|
|
@@ -1013,7 +1021,6 @@ public class EntityPlayer extends EntityHuman implements ICrafting {
|
2019-12-12 19:45:00 +01:00
|
|
|
if (!this.isSpectator()) {
|
|
|
|
super.b(blockposition);
|
|
|
|
}
|
|
|
|
-
|
2016-07-31 23:33:25 +02:00
|
|
|
}
|
|
|
|
|
2019-12-12 19:45:00 +01:00
|
|
|
public void a(double d0, boolean flag) {
|
2016-07-31 23:33:25 +02:00
|
|
|
--
|
2020-01-18 18:28:32 +01:00
|
|
|
2.25.0.windows.1
|
2016-07-31 23:33:25 +02:00
|
|
|
|