diff options
Diffstat (limited to 'src/Items')
-rw-r--r-- | src/Items/ItemBucket.h | 4 | ||||
-rw-r--r-- | src/Items/ItemMobHead.h | 2 |
2 files changed, 3 insertions, 3 deletions
diff --git a/src/Items/ItemBucket.h b/src/Items/ItemBucket.h index 7e1e2c07f..a5b1085ba 100644 --- a/src/Items/ItemBucket.h +++ b/src/Items/ItemBucket.h @@ -76,13 +76,13 @@ public: return false; // Nothing in range. } - if (a_World->GetBlockMeta(BlockPos.x, BlockPos.y, BlockPos.z) != 0) + if (a_World->GetBlockMeta(BlockPos) != 0) { // Not a source block return false; } - BLOCKTYPE Block = a_World->GetBlock(BlockPos.x, BlockPos.y, BlockPos.z); + BLOCKTYPE Block = a_World->GetBlock(BlockPos); ENUM_ITEM_TYPE NewItemType; if (IsBlockWater(Block)) diff --git a/src/Items/ItemMobHead.h b/src/Items/ItemMobHead.h index dc6db6d8b..ef16f6c96 100644 --- a/src/Items/ItemMobHead.h +++ b/src/Items/ItemMobHead.h @@ -231,7 +231,7 @@ public: // Query the world block: BLOCKTYPE BlockType; NIBBLETYPE BlockMeta; - if (!a_World.GetBlockTypeMeta(BlockX, BlockY, BlockZ, BlockType, BlockMeta)) + if (!a_World.GetBlockTypeMeta({ BlockX, BlockY, BlockZ }, BlockType, BlockMeta)) { // Cannot query block, assume unloaded chunk, fail to spawn the wither return false; |