1
0

More small fixes.

This commit is contained in:
archshift
2014-04-26 14:01:48 -07:00
parent 5a0625eccc
commit 7841bad27a
3 changed files with 11 additions and 11 deletions

View File

@@ -87,7 +87,7 @@ void cFallingBlock::Tick(float a_Dt, cChunk & a_Chunk)
AddSpeedY(MilliDt * -9.8f);
AddPosition(GetSpeed() * MilliDt);
//If not static (One billionth precision) broadcast movement.
// If not static (One billionth precision) broadcast movement.
static const float epsilon = 0.000000001;
if ((fabs(GetSpeedX()) > epsilon) || (fabs(GetSpeedZ()) > epsilon))
{