From c19a0f3da6519c00f86bc197242bfff4b1bdd9af Mon Sep 17 00:00:00 2001 From: "madmaxoft@gmail.com" Date: Wed, 3 Oct 2012 16:21:46 +0000 Subject: [PATCH] Minor style cleanup git-svn-id: http://mc-server.googlecode.com/svn/trunk@922 0a769ca7-a7f5-676a-18bf-c427514a06d6 --- source/Blocks/BlockCrops.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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)); }