diff options
Diffstat (limited to 'src/Items')
-rw-r--r-- | src/Items/ItemBucket.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Items/ItemBucket.h b/src/Items/ItemBucket.h index 4f55db7f8..9d1fc276b 100644 --- a/src/Items/ItemBucket.h +++ b/src/Items/ItemBucket.h @@ -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; |