diff options
author | Howaner <franzi.moos@googlemail.com> | 2014-12-14 13:14:48 +0100 |
---|---|---|
committer | Howaner <franzi.moos@googlemail.com> | 2014-12-14 13:14:48 +0100 |
commit | bed456033f9856ad110368a4eb9c8317c4378acb (patch) | |
tree | 0a25c42398a9ee675956933289aacc7779029584 /src/Blocks | |
parent | Fixes (diff) | |
download | cuberite-bed456033f9856ad110368a4eb9c8317c4378acb.tar cuberite-bed456033f9856ad110368a4eb9c8317c4378acb.tar.gz cuberite-bed456033f9856ad110368a4eb9c8317c4378acb.tar.bz2 cuberite-bed456033f9856ad110368a4eb9c8317c4378acb.tar.lz cuberite-bed456033f9856ad110368a4eb9c8317c4378acb.tar.xz cuberite-bed456033f9856ad110368a4eb9c8317c4378acb.tar.zst cuberite-bed456033f9856ad110368a4eb9c8317c4378acb.zip |
Diffstat (limited to 'src/Blocks')
-rw-r--r-- | src/Blocks/BlockCocoaPod.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/Blocks/BlockCocoaPod.h b/src/Blocks/BlockCocoaPod.h index cfd3b4479..1b659d48f 100644 --- a/src/Blocks/BlockCocoaPod.h +++ b/src/Blocks/BlockCocoaPod.h @@ -38,7 +38,7 @@ public: { NIBBLETYPE Meta = a_Chunk.GetMeta(a_RelX, a_RelY, a_RelZ); NIBBLETYPE TypeMeta = Meta & 0x03; - int GrowState = (Meta & 0x0f) >> 2; + int GrowState = Meta >> 2; if (GrowState < 2) { @@ -51,7 +51,7 @@ public: virtual void ConvertToPickups(cItems & a_Pickups, NIBBLETYPE a_BlockMeta) override { - int GrowState = (a_BlockMeta & 0x0f) >> 2; + int GrowState = a_BlockMeta >> 2; a_Pickups.Add(E_ITEM_DYE, ((GrowState >= 2) ? 3 : 1), E_META_DYE_BROWN); } |