It's w not y.

This commit is contained in:
2023-05-01 15:58:04 -04:00
parent 5d6e43313b
commit 44b99a8781
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -378,7 +378,7 @@ public class Mob extends AbstractIntelligenceAgent {
writer.putVector3f(mob.getLoc());
//Rotation
float radians = (float) Math.asin(mob.getRot().y) * 2;
float radians = (float) Math.acos(mob.getRot().y) * 2;
if (mob.building != null)
if (mob.building.getBounds() != null && mob.building.getBounds().getQuaternion() != null)
+1 -1
View File
@@ -646,7 +646,7 @@ public class NPC extends AbstractCharacter {
writer.putVector3f(npc.getLoc());
//Rotation
float radians = (float) Math.asin(npc.getRot().y) * 2;
float radians = (float) Math.acos(npc.getRot().y) * 2;
if (npc.building != null)
if (npc.building.getBounds() != null && npc.building.getBounds().getQuaternion() != null)