From c54ddbb60a91d38087f70e43056e8eb5f41bf8de Mon Sep 17 00:00:00 2001 From: jojo Date: Sat, 23 May 2020 12:46:36 +0200 Subject: [PATCH] Add Pitch/Yaw Vector Fix --- FightSystem_API/src/de/steamwar/fightsystem/Config.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/FightSystem_API/src/de/steamwar/fightsystem/Config.java b/FightSystem_API/src/de/steamwar/fightsystem/Config.java index 0b1e83f..0464811 100644 --- a/FightSystem_API/src/de/steamwar/fightsystem/Config.java +++ b/FightSystem_API/src/de/steamwar/fightsystem/Config.java @@ -268,7 +268,7 @@ public class Config { Vector v1 = TeamBlueSpawn.toVector().subtract(TeamRedSpawn.toVector()); double pitch = Math.toDegrees(v1.angle(v1.clone().setY(0))); - double yaw = Math.toDegrees(v1.clone().setY(0).angle(new Vector(0, 0, 1))); + double yaw = Math.toDegrees(v1.clone().setY(0).angle(new Vector(0, 0, -1))); double pitchInverted = pitch * -1; double yawInverted = yaw + 180;