diff options
Diffstat (limited to 'source')
-rw-r--r-- | source/Blocks/BlockCrops.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source/Blocks/BlockCrops.h b/source/Blocks/BlockCrops.h index 24b8904ae..0a8017a91 100644 --- a/source/Blocks/BlockCrops.h +++ b/source/Blocks/BlockCrops.h @@ -25,7 +25,7 @@ public: cItems Drops;
- if (Meta & 0x7) // Is Wheat
+ if (Meta == 0x7) // Is fully grown
{
Drops.push_back(cItem(E_ITEM_WHEAT, 1, 0));
}
|