diff options
author | madmaxoft@gmail.com <madmaxoft@gmail.com@0a769ca7-a7f5-676a-18bf-c427514a06d6> | 2013-05-19 13:49:01 +0200 |
---|---|---|
committer | madmaxoft@gmail.com <madmaxoft@gmail.com@0a769ca7-a7f5-676a-18bf-c427514a06d6> | 2013-05-19 13:49:01 +0200 |
commit | 34fa53ca3a78fc32003c85256eeb623f96bc663f (patch) | |
tree | 56f0e623b3275da0b55d76bc775ec29f5dbfdf1a /source/Entity.h | |
parent | WebAdmin: The plugin list is sorted alphabetically and if they are enabled or disabled. (diff) | |
download | cuberite-34fa53ca3a78fc32003c85256eeb623f96bc663f.tar cuberite-34fa53ca3a78fc32003c85256eeb623f96bc663f.tar.gz cuberite-34fa53ca3a78fc32003c85256eeb623f96bc663f.tar.bz2 cuberite-34fa53ca3a78fc32003c85256eeb623f96bc663f.tar.lz cuberite-34fa53ca3a78fc32003c85256eeb623f96bc663f.tar.xz cuberite-34fa53ca3a78fc32003c85256eeb623f96bc663f.tar.zst cuberite-34fa53ca3a78fc32003c85256eeb623f96bc663f.zip |
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); |