1
0

The same: Float, not Double

This commit is contained in:
Howaner 2014-06-17 12:45:12 +02:00
parent d89f03b90c
commit 37de63895f

View File

@ -120,7 +120,7 @@ void cArrowEntity::OnHitEntity(cEntity & a_EntityHit, const Vector3d & a_HitPos)
(int)std::floor(GetPosY() * 8.0),
(int)std::floor(GetPosZ() * 8.0),
0.5F,
(float)(0.75 + ((float)((GetUniqueID() * 23) % 32)) / 64)
0.75F + ((float)((GetUniqueID() * 23) % 32)) / 64F
);
Destroy();