2014-08-31 20:56:05 +02:00
|
|
|
From 422f1722ca154f6cc792cc86ec87cd91ae91ab30 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
|
|
|
|
index cc9878f..f170ad0 100644
|
|
|
|
--- a/src/main/java/net/minecraft/server/PlayerConnection.java
|
|
|
|
+++ b/src/main/java/net/minecraft/server/PlayerConnection.java
|
|
|
|
@@ -106,6 +106,7 @@ public class PlayerConnection implements PacketPlayInListener {
|
|
|
|
private float lastPitch = Float.MAX_VALUE;
|
|
|
|
private float lastYaw = Float.MAX_VALUE;
|
|
|
|
private boolean justTeleported = false;
|
|
|
|
+ private boolean hasMoved; // Spigot
|
|
|
|
|
|
|
|
// For the PacketPlayOutBlockPlace hack :(
|
|
|
|
Long lastPacket;
|
|
|
|
@@ -203,6 +204,18 @@ public class PlayerConnection implements PacketPlayInListener {
|
|
|
|
|
|
|
|
// 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.
|
|
|
|
|
|
|
|
@@ -231,7 +244,7 @@ public class PlayerConnection implements PacketPlayInListener {
|
|
|
|
this.lastPitch = to.getPitch();
|
|
|
|
|
|
|
|
// Skip the first time we do this
|
|
|
|
- if (from.getX() != Double.MAX_VALUE) {
|
|
|
|
+ if (true) { // Spigot - don't skip any move events
|
|
|
|
PlayerMoveEvent event = new PlayerMoveEvent(player, from, to);
|
|
|
|
this.server.getPluginManager().callEvent(event);
|
|
|
|
|
|
|
|
--
|
|
|
|
1.9.1
|
|
|
|
|