diff options
Diffstat (limited to '')
-rw-r--r-- | src/Items/ItemMobHead.h | 2 |
1 files changed, 1 insertions, 1 deletions
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; |