From 6b63b52f7a2d906a92e66a0d9bba6e17a0784976 Mon Sep 17 00:00:00 2001 From: snowleo Date: Sun, 9 Oct 2011 23:23:00 +0200 Subject: Notch decided that the sun rises north and sets south. "Corrected" values for /getpos and /compass --- Essentials/src/com/earth2me/essentials/PlayerExtension.java | 9 --------- .../src/com/earth2me/essentials/commands/Commandcompass.java | 2 +- .../src/com/earth2me/essentials/commands/Commandgetpos.java | 2 +- 3 files changed, 2 insertions(+), 11 deletions(-) diff --git a/Essentials/src/com/earth2me/essentials/PlayerExtension.java b/Essentials/src/com/earth2me/essentials/PlayerExtension.java index ef63dacc3..9555bb1a7 100644 --- a/Essentials/src/com/earth2me/essentials/PlayerExtension.java +++ b/Essentials/src/com/earth2me/essentials/PlayerExtension.java @@ -16,15 +16,6 @@ public class PlayerExtension extends PlayerWrapper super(base); this.ess = ess; } - - public float getCorrectedYaw() - { - float angle = (getLocation().getYaw() - 90.0f) % 360.0f; - if (angle < 0) { - angle += 360.0f; - } - return angle; - } public void showInventory(IInventory inventory) { diff --git a/Essentials/src/com/earth2me/essentials/commands/Commandcompass.java b/Essentials/src/com/earth2me/essentials/commands/Commandcompass.java index bd07c2b9b..8d582a296 100644 --- a/Essentials/src/com/earth2me/essentials/commands/Commandcompass.java +++ b/Essentials/src/com/earth2me/essentials/commands/Commandcompass.java @@ -15,7 +15,7 @@ public class Commandcompass extends EssentialsCommand @Override public void run(Server server, User user, String commandLabel, String[] args) throws Exception { - int r = (int)user.getCorrectedYaw(); + int r = (int)user.getLocation().getYaw(); String dir; if (r < 23) dir = "N"; else if (r < 68) dir = "NE"; diff --git a/Essentials/src/com/earth2me/essentials/commands/Commandgetpos.java b/Essentials/src/com/earth2me/essentials/commands/Commandgetpos.java index bf5cff75d..12eeb5182 100644 --- a/Essentials/src/com/earth2me/essentials/commands/Commandgetpos.java +++ b/Essentials/src/com/earth2me/essentials/commands/Commandgetpos.java @@ -19,7 +19,7 @@ public class Commandgetpos extends EssentialsCommand user.sendMessage("§7X: " + coords.getBlockX() + " (-North <-> +South)"); user.sendMessage("§7Y: " + coords.getBlockY() + " (+Up <-> -Down)"); user.sendMessage("§7Z: " + coords.getBlockZ() + " (+East <-> -West)"); - user.sendMessage("§7Yaw: " + user.getCorrectedYaw() + " (Rotation)"); + user.sendMessage("§7Yaw: " + coords.getYaw() + " (Rotation)"); user.sendMessage("§7Pitch: " + coords.getPitch() + " (Head angle)"); } } -- cgit v1.2.3