13
0
geforkt von Mirrors/Paper

Moved the PLAYER_MOVE and PLAYER_TELEPORT hooks to be packet-based, fixed player.getLocation() to return pitch/yaw

By: Dinnerbone <dinnerbone@dinnerbone.com>
Dieser Commit ist enthalten in:
CraftBukkit/Spigot 2010-12-29 01:25:32 +00:00
Ursprung 6ca8defced
Commit f8d2b930f9

Datei anzeigen

@ -26,7 +26,7 @@ public class CraftPlayer implements Player {
}
public Location getLocation() {
return new Location(getWorld(), player.p, player.q, player.r);
return new Location(getWorld(), player.p, player.q, player.r, player.v, player.w);
}
public World getWorld() {