diff options
author | madmaxoft@gmail.com <madmaxoft@gmail.com@0a769ca7-a7f5-676a-18bf-c427514a06d6> | 2012-07-16 20:29:33 +0200 |
---|---|---|
committer | madmaxoft@gmail.com <madmaxoft@gmail.com@0a769ca7-a7f5-676a-18bf-c427514a06d6> | 2012-07-16 20:29:33 +0200 |
commit | 3eff1473553bf54acd1cff839ece0f1a91a372f1 (patch) | |
tree | c374a72e6dd0d0ac7109a1c7c054662044705731 /source/items/Item.h | |
parent | Fixed a compilation warning (diff) | |
download | cuberite-3eff1473553bf54acd1cff839ece0f1a91a372f1.tar cuberite-3eff1473553bf54acd1cff839ece0f1a91a372f1.tar.gz cuberite-3eff1473553bf54acd1cff839ece0f1a91a372f1.tar.bz2 cuberite-3eff1473553bf54acd1cff839ece0f1a91a372f1.tar.lz cuberite-3eff1473553bf54acd1cff839ece0f1a91a372f1.tar.xz cuberite-3eff1473553bf54acd1cff839ece0f1a91a372f1.tar.zst cuberite-3eff1473553bf54acd1cff839ece0f1a91a372f1.zip |
Diffstat (limited to 'source/items/Item.h')
-rw-r--r-- | source/items/Item.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source/items/Item.h b/source/items/Item.h index e63ec2fc4..f0dcfd415 100644 --- a/source/items/Item.h +++ b/source/items/Item.h @@ -24,7 +24,7 @@ public: virtual bool IsPlaceable();
virtual BLOCKTYPE GetBlockType();
- virtual char GetBlockMeta(char a_ItemMeta);
+ virtual NIBBLETYPE GetBlockMeta(char a_ItemMeta) override;
virtual bool CanHarvestBlock(BLOCKTYPE a_BlockID);
|