1
0

Forgot to change one Vector3d to Vector3i.

This commit is contained in:
STRWarrior 2013-12-17 20:04:39 +01:00
parent a1bfc89118
commit a74fdd9023

View File

@ -168,7 +168,7 @@ public:
if (IsBlockWater(a_BlockType) || IsBlockLava(a_BlockType))
{
HitFluid = true;
m_Pos = Vector3d(a_BlockX, a_BlockY, a_BlockZ);
m_Pos = Vector3i(a_BlockX, a_BlockY, a_BlockZ);
return true;
}
return false;