1
0

Fixed warnings

This commit is contained in:
Howaner 2014-08-04 01:35:25 +02:00
parent 0911072d27
commit 7bea90d6ca

View File

@ -290,16 +290,16 @@ void cMonster::Tick(float a_Dt, cChunk & a_Chunk)
if (m_bOnGround) if (m_bOnGround)
{ {
Distance *= 2.5; Distance *= 2.5f;
} }
else if (IsSwimming()) else if (IsSwimming())
{ {
Distance *= 1.3; Distance *= 1.3f;
} }
else else
{ {
// Don't let the mob move too much if he's falling. // Don't let the mob move too much if he's falling.
Distance *= 0.25; Distance *= 0.25f;
} }
AddSpeedX(Distance.x); AddSpeedX(Distance.x);