1
0

ItemHandler: changed IsDrinkable() to take a short argument

This commit is contained in:
archshift
2014-06-08 17:06:15 -07:00
parent a1a8b7c0ee
commit 3766ac96d7
5 changed files with 14 additions and 18 deletions

View File

@@ -504,9 +504,9 @@ bool cItemHandler::IsFood(void)
bool cItemHandler::IsDrinkable(const cItem * a_Item)
bool cItemHandler::IsDrinkable(short a_ItemDamage)
{
UNUSED(a_Item);
UNUSED(a_ItemDamage);
switch (m_ItemType)
{