summaryrefslogtreecommitdiffstats
path: root/src/Entities/Entity.cpp
diff options
context:
space:
mode:
authorChris Darnell <chris@cedeel.com>2014-09-23 00:23:56 +0200
committerChris Darnell <chris@cedeel.com>2014-09-23 00:23:56 +0200
commit806871b86f2f04545f20caa6a8c30db2ccb7bc12 (patch)
treed77d1df4b459af2363ebf2d3044981d15b78eb81 /src/Entities/Entity.cpp
parentUpdated README.md (diff)
downloadcuberite-806871b86f2f04545f20caa6a8c30db2ccb7bc12.tar
cuberite-806871b86f2f04545f20caa6a8c30db2ccb7bc12.tar.gz
cuberite-806871b86f2f04545f20caa6a8c30db2ccb7bc12.tar.bz2
cuberite-806871b86f2f04545f20caa6a8c30db2ccb7bc12.tar.lz
cuberite-806871b86f2f04545f20caa6a8c30db2ccb7bc12.tar.xz
cuberite-806871b86f2f04545f20caa6a8c30db2ccb7bc12.tar.zst
cuberite-806871b86f2f04545f20caa6a8c30db2ccb7bc12.zip
Diffstat (limited to 'src/Entities/Entity.cpp')
-rw-r--r--src/Entities/Entity.cpp5
1 files changed, 3 insertions, 2 deletions
diff --git a/src/Entities/Entity.cpp b/src/Entities/Entity.cpp
index c8ebc4314..8ef24828e 100644
--- a/src/Entities/Entity.cpp
+++ b/src/Entities/Entity.cpp
@@ -342,6 +342,7 @@ bool cEntity::DoTakeDamage(TakeDamageInfo & a_TDI)
a_TDI.FinalDamage += (int)ceil(2.5 * SmiteLevel);
break;
}
+ default: break;
}
}
}
@@ -1015,7 +1016,7 @@ void cEntity::HandlePhysics(float a_Dt, cChunk & a_Chunk)
if (Tracer.HitNormal.y != 0.f) NextSpeed.y = 0.f;
if (Tracer.HitNormal.z != 0.f) NextSpeed.z = 0.f;
- if (Tracer.HitNormal.y == 1) // Hit BLOCK_FACE_YP, we are on the ground
+ if (Tracer.HitNormal.y == 1.f) // Hit BLOCK_FACE_YP, we are on the ground
{
m_bOnGround = true;
}
@@ -1960,7 +1961,7 @@ void cEntity::SteerVehicle(float a_Forward, float a_Sideways)
{
return;
}
- if ((a_Forward != 0) || (a_Sideways != 0))
+ if ((a_Forward != 0.f) || (a_Sideways != 0.f))
{
m_AttachedTo->HandleSpeedFromAttachee(a_Forward, a_Sideways);
}