1
0

Code style: Fixed braces on separate lines.

This commit is contained in:
madmaxoft
2014-07-19 15:23:40 +02:00
parent 822d83009d
commit 08748bafe2
14 changed files with 38 additions and 20 deletions

View File

@@ -622,7 +622,8 @@ void cPlayer::FinishEating(void)
GetInventory().RemoveOneEquippedItem();
// if the food is mushroom soup, return a bowl to the inventory
if( Item.m_ItemType == E_ITEM_MUSHROOM_SOUP ) {
if (Item.m_ItemType == E_ITEM_MUSHROOM_SOUP)
{
cItem emptyBowl(E_ITEM_BOWL, 1, 0, "");
GetInventory().AddItem(emptyBowl, true, true);
}