summaryrefslogtreecommitdiffstats
path: root/src/Items
diff options
context:
space:
mode:
authorTiger Wang <ziwei.tiger@hotmail.co.uk>2013-12-08 00:45:33 +0100
committerTiger Wang <ziwei.tiger@hotmail.co.uk>2013-12-08 00:45:33 +0100
commit838d4d5d1d9be001357d6795a343244a43652e2f (patch)
treedbc89a04d9fdd542601397dc6d7d4a963c8f6399 /src/Items
parentConsole trims its commands before executing 'em (diff)
downloadcuberite-838d4d5d1d9be001357d6795a343244a43652e2f.tar
cuberite-838d4d5d1d9be001357d6795a343244a43652e2f.tar.gz
cuberite-838d4d5d1d9be001357d6795a343244a43652e2f.tar.bz2
cuberite-838d4d5d1d9be001357d6795a343244a43652e2f.tar.lz
cuberite-838d4d5d1d9be001357d6795a343244a43652e2f.tar.xz
cuberite-838d4d5d1d9be001357d6795a343244a43652e2f.tar.zst
cuberite-838d4d5d1d9be001357d6795a343244a43652e2f.zip
Diffstat (limited to 'src/Items')
-rw-r--r--src/Items/ItemDye.h5
1 files changed, 2 insertions, 3 deletions
diff --git a/src/Items/ItemDye.h b/src/Items/ItemDye.h
index 99b8d2543..190cdc510 100644
--- a/src/Items/ItemDye.h
+++ b/src/Items/ItemDye.h
@@ -21,14 +21,13 @@ public:
virtual bool OnItemUse(cWorld * a_World, cPlayer * a_Player, const cItem & a_Item, int a_BlockX, int a_BlockY, int a_BlockZ, char a_Dir) override
{
- // TODO: Handle coloring the sheep, too (OnItemUseOnEntity maybe)
-
// Handle growing the plants:
if (a_Item.m_ItemDamage == E_META_DYE_WHITE)
{
if (a_World->GrowRipePlant(a_BlockX, a_BlockY, a_BlockZ, true))
{
- if (a_Player->GetGameMode() != gmCreative)
+ // Particle effects are in GrowRipePlant
+ if (!a_Player->IsGameModeCreative())
{
a_Player->GetInventory().RemoveOneEquippedItem();
return true;