2015-05-25 14:05:40 +02:00
|
|
|
From e77ef424971b9cc45485367ec4a7a0eef3e70da0 Mon Sep 17 00:00:00 2001
|
2014-07-21 22:46:54 +02:00
|
|
|
From: md_5 <md_5@live.com.au>
|
|
|
|
Date: Sun, 6 Oct 2013 17:36:28 +1100
|
|
|
|
Subject: [PATCH] Don't Special Case X Move Value
|
|
|
|
|
|
|
|
|
|
|
|
diff --git a/src/main/java/net/minecraft/server/PlayerConnection.java b/src/main/java/net/minecraft/server/PlayerConnection.java
|
2015-05-25 14:05:40 +02:00
|
|
|
index 8cf0b71..0d45439 100644
|
2014-07-21 22:46:54 +02:00
|
|
|
--- a/src/main/java/net/minecraft/server/PlayerConnection.java
|
|
|
|
+++ b/src/main/java/net/minecraft/server/PlayerConnection.java
|
2015-05-22 15:52:56 +02:00
|
|
|
@@ -111,6 +111,7 @@ public class PlayerConnection implements PacketListenerPlayIn, IUpdatePlayerList
|
2014-07-21 22:46:54 +02:00
|
|
|
private float lastPitch = Float.MAX_VALUE;
|
|
|
|
private float lastYaw = Float.MAX_VALUE;
|
|
|
|
private boolean justTeleported = false;
|
|
|
|
+ private boolean hasMoved; // Spigot
|
|
|
|
|
2014-11-29 01:06:26 +01:00
|
|
|
public CraftPlayer getPlayer() {
|
|
|
|
return (this.player == null) ? null : (CraftPlayer) this.player.getBukkitEntity();
|
2015-05-22 15:52:56 +02:00
|
|
|
@@ -222,6 +223,18 @@ public class PlayerConnection implements PacketListenerPlayIn, IUpdatePlayerList
|
|
|
|
}
|
|
|
|
// CraftBukkit start - fire PlayerMoveEvent
|
|
|
|
Player player = this.getPlayer();
|
|
|
|
+ // Spigot Start
|
|
|
|
+ if ( !hasMoved )
|
|
|
|
+ {
|
|
|
|
+ Location curPos = player.getLocation();
|
|
|
|
+ lastPosX = curPos.getX();
|
|
|
|
+ lastPosY = curPos.getY();
|
|
|
|
+ lastPosZ = curPos.getZ();
|
|
|
|
+ lastYaw = curPos.getYaw();
|
|
|
|
+ lastPitch = curPos.getPitch();
|
|
|
|
+ hasMoved = true;
|
|
|
|
+ }
|
|
|
|
+ // Spigot End
|
|
|
|
Location from = new Location(player.getWorld(), lastPosX, lastPosY, lastPosZ, lastYaw, lastPitch); // Get the Players previous Event location.
|
|
|
|
Location to = player.getLocation().clone(); // Start off the To location as the Players current location.
|
2014-07-21 22:46:54 +02:00
|
|
|
|
2015-05-22 15:52:56 +02:00
|
|
|
@@ -250,7 +263,7 @@ public class PlayerConnection implements PacketListenerPlayIn, IUpdatePlayerList
|
|
|
|
this.lastPitch = to.getPitch();
|
2014-07-21 22:46:54 +02:00
|
|
|
|
2015-05-22 15:52:56 +02:00
|
|
|
// Skip the first time we do this
|
|
|
|
- if (from.getX() != Double.MAX_VALUE) {
|
|
|
|
+ if (true) { // Spigot - don't skip any move events
|
|
|
|
Location oldTo = to.clone();
|
|
|
|
PlayerMoveEvent event = new PlayerMoveEvent(player, from, to);
|
|
|
|
this.server.getPluginManager().callEvent(event);
|
2014-07-21 22:46:54 +02:00
|
|
|
--
|
2015-05-09 22:23:26 +02:00
|
|
|
2.1.4
|
2014-07-21 22:46:54 +02:00
|
|
|
|