diff options
| author | azazel <none@none> | 2010-08-05 22:08:07 +0600 |
|---|---|---|
| committer | azazel <none@none> | 2010-08-05 22:08:07 +0600 |
| commit | 885fc368fdef08dbe3687c0b4c21a6ac09906fed (patch) | |
| tree | e3cf3ad44f89d442280acddc0d2685b6b02aaafb /src/server/scripts/World | |
| parent | a042b972ed3361393fe3e7ce4e177073021bcfc9 (diff) | |
* Implement item limit category (based on changes by VladimirMangos)
* Additional check for HandleAutoBankItemOpcode (thanks to VladimitMangos)
* Properly show empty vendor list for empty item list (author: a1ien)
* More stricted checks for store operations (thanks to VladimirMangos)
* Prevent autostoring of not empty bags (thanks to L1ghtGu4rd)
Changes need testing. Please post bugs on our tracker.
--HG--
branch : trunk
Diffstat (limited to 'src/server/scripts/World')
| -rw-r--r-- | src/server/scripts/World/item_scripts.cpp | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/src/server/scripts/World/item_scripts.cpp b/src/server/scripts/World/item_scripts.cpp index 013888f909d..1c70d9b2d3d 100644 --- a/src/server/scripts/World/item_scripts.cpp +++ b/src/server/scripts/World/item_scripts.cpp @@ -96,13 +96,14 @@ bool ItemUse_item_draenei_fishing_net(Player* pPlayer, Item* /*pItem*/, SpellCas else { ItemPosCountVec dest; - uint8 msg = pPlayer->CanStoreNewItem(NULL_BAG, NULL_SLOT, dest, 23614, 1); + uint32 itemId = 23614; + uint8 msg = pPlayer->CanStoreNewItem(NULL_BAG, NULL_SLOT, dest, itemId, 1); if (msg == EQUIP_ERR_OK) { - if (Item* item = pPlayer->StoreNewItem(dest,23614,true)) - pPlayer->SendNewItem(item,1,false,true); + if (Item* item = pPlayer->StoreNewItem(dest, itemId, true)) + pPlayer->SendNewItem(item, 1, false, true); } else - pPlayer->SendEquipError(msg,NULL,NULL); + pPlayer->SendEquipError(msg, NULL, NULL, itemId); } } //} |
