1
0

You can no longer color with wood

This commit is contained in:
tonibm19 2013-11-10 16:42:38 +01:00
parent e919496025
commit 9da4011a7f

View File

@ -50,6 +50,8 @@ void cSheep::OnRightClicked(cPlayer & a_Player)
Drops.push_back(cItem(E_BLOCK_WOOL, NumDrops, m_WoolColor));
m_World->SpawnItemPickups(Drops, GetPosX(), GetPosY(), GetPosZ(), 10);
}
if (a_Player.GetEquippedItem().m_ItemType == E_ITEM_DYE
)
if (a_Player.GetEquippedItem().m_ItemDamage == E_META_DYE_BLACK)
{
m_WoolColor = 15;
@ -210,4 +212,5 @@ void cSheep::OnRightClicked(cPlayer & a_Player)
a_Player.GetInventory().RemoveOneEquippedItem();
}
}
}
}