From 7ef4c5e7a13d1555536bbd2471eee11fb8ed1b5f Mon Sep 17 00:00:00 2001 From: Yohann Ferreira Date: Fri, 4 Nov 2011 18:28:12 +0100 Subject: Prevented the equipment to remove the item when something went wrong. Reviewed-by: Thorbjorn Lindeijer. --- src/game-server/inventory.cpp | 22 ++++++++++++---------- 1 file changed, 12 insertions(+), 10 deletions(-) diff --git a/src/game-server/inventory.cpp b/src/game-server/inventory.cpp index 1c52bcfc..11065545 100644 --- a/src/game-server/inventory.cpp +++ b/src/game-server/inventory.cpp @@ -707,13 +707,12 @@ bool Inventory::unequip(unsigned int itemInstance) if (!itemInstance) return false; - MessageOut equipMsg(GPMSG_EQUIP); - equipMsg.writeInt16(0); // Item Id, useless in case of unequip. - // The itemId to unequip unsigned int itemId = 0; unsigned int slotTypeId = 0; + bool addedToInventory = false; + // Empties all equip entries that point to the given equipment slot // The equipment slots should NEVER be erased after initialization! for (EquipData::iterator it = mPoss->equipSlots.begin(), @@ -723,6 +722,13 @@ bool Inventory::unequip(unsigned int itemInstance) { // Add the item to the inventory list if not already present there itemId = it->second.itemId; + + // Move the item back to inventory and return false when it failed. + if (!addedToInventory && insert(itemId, 1) > 0) + return false; + else + addedToInventory = true; + it->second.itemId = 0; it->second.itemInstance = 0; @@ -737,15 +743,11 @@ bool Inventory::unequip(unsigned int itemInstance) if (!itemId) return false; - // Number of slot types touched, - equipMsg.writeInt16(1); - - // Move the item back to inventory. - insert(itemId, 1); - + MessageOut equipMsg(GPMSG_EQUIP); + equipMsg.writeInt16(0); // Item Id, useless in case of unequip. + equipMsg.writeInt16(1); // Number of slot types touched. equipMsg.writeInt16(itemInstance); equipMsg.writeInt16(0); // Capacity used, set to 0 to unequip. - gameHandler->sendTo(mCharacter, equipMsg); // Apply unequip trigger -- cgit v1.2.3-70-g09d2