forked from MagicBane/Server
Location serialization matches NPC
This commit is contained in:
@@ -362,8 +362,13 @@ public class Mob extends AbstractIntelligenceAgent {
|
|||||||
writer.putVector3f(mob.getLoc());
|
writer.putVector3f(mob.getLoc());
|
||||||
|
|
||||||
//Rotation
|
//Rotation
|
||||||
|
float radians = (float) Math.asin(mob.getRot().y) * 2;
|
||||||
|
|
||||||
writer.putFloat(mob.getRot().y);
|
if (mob.building != null)
|
||||||
|
if (mob.building.getBounds() != null && mob.building.getBounds().getQuaternion() != null)
|
||||||
|
radians += (mob.building.getBounds().getQuaternion()).angleY;
|
||||||
|
|
||||||
|
writer.putFloat(radians);
|
||||||
|
|
||||||
//Inventory Stuff
|
//Inventory Stuff
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user