diff options
author | Tycho <work.tycho+git@gmail.com> | 2014-02-03 21:26:17 +0100 |
---|---|---|
committer | Tycho <work.tycho+git@gmail.com> | 2014-02-03 21:26:17 +0100 |
commit | 80807eec2cc1c497c4766a0c7cddb9c3ddc29e45 (patch) | |
tree | 4655d0f74ce54797b73e4863c2df30134ea74763 /src/Mobs/SnowGolem.cpp | |
parent | Merge pull request #623 from mc-server/tnt (diff) | |
download | cuberite-80807eec2cc1c497c4766a0c7cddb9c3ddc29e45.tar cuberite-80807eec2cc1c497c4766a0c7cddb9c3ddc29e45.tar.gz cuberite-80807eec2cc1c497c4766a0c7cddb9c3ddc29e45.tar.bz2 cuberite-80807eec2cc1c497c4766a0c7cddb9c3ddc29e45.tar.lz cuberite-80807eec2cc1c497c4766a0c7cddb9c3ddc29e45.tar.xz cuberite-80807eec2cc1c497c4766a0c7cddb9c3ddc29e45.tar.zst cuberite-80807eec2cc1c497c4766a0c7cddb9c3ddc29e45.zip |
Diffstat (limited to 'src/Mobs/SnowGolem.cpp')
-rw-r--r-- | src/Mobs/SnowGolem.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Mobs/SnowGolem.cpp b/src/Mobs/SnowGolem.cpp index 06021cca5..c60103055 100644 --- a/src/Mobs/SnowGolem.cpp +++ b/src/Mobs/SnowGolem.cpp @@ -29,7 +29,7 @@ void cSnowGolem::GetDrops(cItems & a_Drops, cEntity * a_Killer) void cSnowGolem::Tick(float a_Dt, cChunk & a_Chunk) { super::Tick(a_Dt, a_Chunk); - if (IsBiomeNoDownfall((EMCSBiome) m_World->GetBiomeAt((int) floor(GetPosX()), (int) floor(GetPosZ())) )) + if (IsBiomeNoDownfall(m_World->GetBiomeAt((int) floor(GetPosX()), (int) floor(GetPosZ())) )) { TakeDamage(*this); } |