diff options
Diffstat (limited to 'source/Entity.h')
-rw-r--r-- | source/Entity.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/source/Entity.h b/source/Entity.h index d80c622e3..bc3d90b15 100644 --- a/source/Entity.h +++ b/source/Entity.h @@ -122,8 +122,8 @@ public: double GetSpeedY (void) const { return m_Speed.y; } double GetSpeedZ (void) const { return m_Speed.z; } - int GetChunkX(void) const {return FAST_FLOOR_DIV(((int)m_Pos.x), cChunkDef::Width); } - int GetChunkZ(void) const {return FAST_FLOOR_DIV(((int)m_Pos.z), cChunkDef::Width); } + int GetChunkX(void) const {return (int)floor(m_Pos.x / cChunkDef::Width); } + int GetChunkZ(void) const {return (int)floor(m_Pos.z / cChunkDef::Width); } void SetHeadYaw (double a_HeadYaw); void SetMass (double a_Mass); |