diff options
author | madmaxoft@gmail.com <madmaxoft@gmail.com@0a769ca7-a7f5-676a-18bf-c427514a06d6> | 2012-07-16 21:10:12 +0200 |
---|---|---|
committer | madmaxoft@gmail.com <madmaxoft@gmail.com@0a769ca7-a7f5-676a-18bf-c427514a06d6> | 2012-07-16 21:10:12 +0200 |
commit | 520dee1a909c14421eab48d64e9d8528f82d122c (patch) | |
tree | 1cb371e2523a148d0326aae819068347052f773e /source/items/Item.h | |
parent | Changed GetBlockMeta to return NIBBLETYPE instead of char (diff) | |
download | cuberite-520dee1a909c14421eab48d64e9d8528f82d122c.tar cuberite-520dee1a909c14421eab48d64e9d8528f82d122c.tar.gz cuberite-520dee1a909c14421eab48d64e9d8528f82d122c.tar.bz2 cuberite-520dee1a909c14421eab48d64e9d8528f82d122c.tar.lz cuberite-520dee1a909c14421eab48d64e9d8528f82d122c.tar.xz cuberite-520dee1a909c14421eab48d64e9d8528f82d122c.tar.zst cuberite-520dee1a909c14421eab48d64e9d8528f82d122c.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 f0dcfd415..14780e6ee 100644 --- a/source/items/Item.h +++ b/source/items/Item.h @@ -24,7 +24,7 @@ public: virtual bool IsPlaceable();
virtual BLOCKTYPE GetBlockType();
- virtual NIBBLETYPE GetBlockMeta(char a_ItemMeta) override;
+ virtual NIBBLETYPE GetBlockMeta(char a_ItemMeta);
virtual bool CanHarvestBlock(BLOCKTYPE a_BlockID);
|