diff options
author | Mattes D <github@xoft.cz> | 2016-08-19 14:09:10 +0200 |
---|---|---|
committer | Mattes D <github@xoft.cz> | 2016-08-19 14:09:10 +0200 |
commit | 7549f468b396325be0094495a80cb5f4ec3efdf0 (patch) | |
tree | 4bf43680b38b96c1286f5aed5c4dba73f078b857 /src/Mobs/Monster.cpp | |
parent | Removed Decoda project files, no longer used. (#3320) (diff) | |
download | cuberite-7549f468b396325be0094495a80cb5f4ec3efdf0.tar cuberite-7549f468b396325be0094495a80cb5f4ec3efdf0.tar.gz cuberite-7549f468b396325be0094495a80cb5f4ec3efdf0.tar.bz2 cuberite-7549f468b396325be0094495a80cb5f4ec3efdf0.tar.lz cuberite-7549f468b396325be0094495a80cb5f4ec3efdf0.tar.xz cuberite-7549f468b396325be0094495a80cb5f4ec3efdf0.tar.zst cuberite-7549f468b396325be0094495a80cb5f4ec3efdf0.zip |
Diffstat (limited to '')
-rw-r--r-- | src/Mobs/Monster.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Mobs/Monster.cpp b/src/Mobs/Monster.cpp index 3b0fdd36c..98c22e299 100644 --- a/src/Mobs/Monster.cpp +++ b/src/Mobs/Monster.cpp @@ -1213,7 +1213,7 @@ bool cMonster::WouldBurnAt(Vector3d a_Location, cChunk & a_Chunk) GetWorld()->IsWeatherSunnyAt(POSX_TOINT, POSZ_TOINT) // Not raining ) { - int MobHeight = static_cast<int>(a_Location.y) + round(GetHeight()) - 1; // The height of the mob head + int MobHeight = FloorC(a_Location.y + GetHeight()) - 1; // The block Y coord of the mob's head if (MobHeight >= cChunkDef::Height) { return true; |