Fixed compilation on Linux
git-svn-id: http://mc-server.googlecode.com/svn/trunk@1434 0a769ca7-a7f5-676a-18bf-c427514a06d6
This commit is contained in:
@@ -406,9 +406,9 @@ void cProtocol132::SendSpawnMob(const cMonster & a_Mob)
|
||||
WriteInt (a_Mob.GetUniqueID());
|
||||
WriteByte (a_Mob.GetMobType());
|
||||
WriteVectorI((Vector3i)(a_Mob.GetPosition() * 32));
|
||||
WriteByte ((BYTE)((a_Mob.GetRotation() / 360.f) * 256));
|
||||
WriteByte ((BYTE)((a_Mob.GetPitch() / 360.f) * 256));
|
||||
WriteByte ((BYTE)((a_Mob.GetHeadYaw() / 360.f) * 256));
|
||||
WriteByte ((Byte)((a_Mob.GetRotation() / 360.f) * 256));
|
||||
WriteByte ((Byte)((a_Mob.GetPitch() / 360.f) * 256));
|
||||
WriteByte ((Byte)((a_Mob.GetHeadYaw() / 360.f) * 256));
|
||||
WriteShort ((short)(a_Mob.GetSpeedX() * 400));
|
||||
WriteShort ((short)(a_Mob.GetSpeedY() * 400));
|
||||
WriteShort ((short)(a_Mob.GetSpeedZ() * 400));
|
||||
|
||||
Reference in New Issue
Block a user