3
0
Mirror von https://github.com/IntellectualSites/FastAsyncWorldEdit.git synchronisiert 2024-07-22 18:18:03 +02:00

Fix swapping of pitch and yaw in setLocation

Also use rotation(Pitch|Yaw) in getLocation for consistency with
getPitch and getYaw.
Dieser Commit ist enthalten in:
zml 2015-07-22 00:08:36 -07:00 committet von Kenzie Togami
Ursprung 3f171a95b7
Commit 07edf3d365

Datei anzeigen

@ -81,8 +81,8 @@ public class ForgePlayer extends AbstractPlayerActor {
return new Location(
ForgeWorldEdit.inst.getWorld(this.player.worldObj),
position,
this.player.cameraYaw,
this.player.cameraPitch);
this.player.rotationYaw,
this.player.rotationPitch);
}
@Override
@ -150,12 +150,11 @@ public class ForgePlayer extends AbstractPlayerActor {
component.getChatStyle().setColor(formatting);
this.player.addChatMessage(component);
}
}
@Override
public void setPosition(Vector pos, float pitch, float yaw) {
this.player.playerNetServerHandler.setPlayerLocation(pos.getX(), pos.getY(), pos.getZ(), pitch, yaw);
this.player.playerNetServerHandler.setPlayerLocation(pos.getX(), pos.getY(), pos.getZ(), yaw, pitch);
}
@Override