From a87db81b6b7551a248e31e2850577aefda092538 Mon Sep 17 00:00:00 2001 From: Andrei Karas Date: Tue, 5 May 2015 20:58:21 +0300 Subject: Replace most bools usage in playerinfo to strong typed bools. --- src/actions/actions.cpp | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'src/actions/actions.cpp') diff --git a/src/actions/actions.cpp b/src/actions/actions.cpp index f9b0c0550..d80949865 100644 --- a/src/actions/actions.cpp +++ b/src/actions/actions.cpp @@ -457,7 +457,7 @@ impHandler(dropItemIdAll) Item *const item = inv->findItem(atoi(event.args.c_str()), 1); if (item && !PlayerInfo::isItemProtected(item->getId())) - PlayerInfo::dropItem(item, item->getQuantity(), true); + PlayerInfo::dropItem(item, item->getQuantity(), Sfx_true); return true; } @@ -465,7 +465,7 @@ impHandler(dropItemInvAll) { Item *const item = getItemByInvIndex(event, InventoryType::INVENTORY); if (item && !PlayerInfo::isItemProtected(item->getId())) - PlayerInfo::dropItem(item, item->getQuantity(), true); + PlayerInfo::dropItem(item, item->getQuantity(), Sfx_true); return true; } @@ -1452,7 +1452,7 @@ impHandler(useItem) { // +++ ignoring item color for now const Item *const item = inv->findItem(itemId, 1); - PlayerInfo::useEquipItem(item, true); + PlayerInfo::useEquipItem(item, Sfx_true); } } else if (itemId < SKILL_MIN_ID && spellManager) @@ -1469,7 +1469,7 @@ impHandler(useItem) impHandler(useItemInv) { Item *const item = getItemByInvIndex(event, InventoryType::INVENTORY); - PlayerInfo::useEquipItem(item, true); + PlayerInfo::useEquipItem(item, Sfx_true); return true; } -- cgit v1.2.3-70-g09d2