Mirror von
https://github.com/PaperMC/Paper.git
synchronisiert 2024-12-18 12:30:06 +01:00
Merge branch 'master' of github.com:Dinnerbone/Craftbukkit
Dieser Commit ist enthalten in:
Commit
36b95edc0c
@ -62,23 +62,24 @@ public class EntityPlayerMP extends EntityPlayer
|
|||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Craftbukkit: Overloaded version of b(double,double,double,float)
|
* Craftbukkit: Overloaded version of b(double,double,double,float, float)
|
||||||
*
|
*
|
||||||
* Enables monitoring of PLAYER_MOVE events.
|
* Enables monitoring of PLAYER_MOVE events.
|
||||||
*/
|
*/
|
||||||
public void b(double x, double y, double z, float rotation, float pitch) {
|
public void b(double x, double y, double z, float rotation, float pitch) {
|
||||||
super.b(x,y,z,pitch,rotation);
|
Location newLocation = new Location(server.getWorld(b.e),x,y,z);
|
||||||
|
|
||||||
// Only send an event if player position has changed.
|
// Only send an event if player position has changed.
|
||||||
if (x == oldLocation.getX() && y == oldLocation.getY() && z == oldLocation.getZ())
|
if (x != oldLocation.getX() || y != oldLocation.getY() || z != oldLocation.getZ()) {
|
||||||
return;
|
|
||||||
|
|
||||||
Location newLocation = new Location(server.getWorld(b.e),x,y,z);
|
|
||||||
PlayerMoveEvent pm = new PlayerMoveEvent(Event.Type.PLAYER_MOVE, server.getPlayer(this),
|
PlayerMoveEvent pm = new PlayerMoveEvent(Event.Type.PLAYER_MOVE, server.getPlayer(this),
|
||||||
oldLocation, newLocation);
|
oldLocation, newLocation);
|
||||||
|
|
||||||
server.getPluginManager().callEvent(pm);
|
server.getPluginManager().callEvent(pm);
|
||||||
|
if (pm.isCancelled())
|
||||||
|
newLocation = pm.getFrom();
|
||||||
|
}
|
||||||
oldLocation = newLocation;
|
oldLocation = newLocation;
|
||||||
|
super.b(newLocation.getX(),newLocation.getY(),newLocation.getZ(),rotation, pitch);
|
||||||
}
|
}
|
||||||
|
|
||||||
public void k() {
|
public void k() {
|
||||||
|
Laden…
In neuem Issue referenzieren
Einen Benutzer sperren