1
0

Fixed stupid syntax error (thanks build system).

This commit is contained in:
Alexander Harkness 2013-08-09 17:17:04 +01:00
parent eaec6a4aab
commit e9b9f1861c

View File

@ -765,7 +765,7 @@ void cPlayer::SendMessage(const AString & a_Message)
void cPlayer::TeleportToCoords(double a_PosX, double a_PosY, double a_PosZ)
{
m_LastGroundHeight = (float)a_PosY();
m_LastGroundHeight = (float)a_PosY;
SetPosition( a_PosX, a_PosY, a_PosZ );
m_World->BroadcastTeleportEntity(*this, GetClientHandle());