diff options
author | megamage <none@none> | 2009-06-19 19:01:25 -0500 |
---|---|---|
committer | megamage <none@none> | 2009-06-19 19:01:25 -0500 |
commit | 2940aeb681259c977f7e7c9d1023050ec2271ca6 (patch) | |
tree | a768ff1f3cdea3067b2c4a9f1b0ffe0e0391be23 /src/game/ItemHandler.cpp | |
parent | 8adfaceadffbb66768ed5b0e3284c0ee46363a36 (diff) |
[8048] Fixed typo in HandleBuyItemInSlotOpcode. Author: nos4r2zod
[8047] Little cleanup in C++ manner. Author: ApoC
--HG--
branch : trunk
Diffstat (limited to 'src/game/ItemHandler.cpp')
-rw-r--r-- | src/game/ItemHandler.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/game/ItemHandler.cpp b/src/game/ItemHandler.cpp index 65c587ed79f..cf762dd0cb2 100644 --- a/src/game/ItemHandler.cpp +++ b/src/game/ItemHandler.cpp @@ -674,7 +674,7 @@ void WorldSession::HandleBuyItemInSlotOpcode( WorldPacket & recv_data ) recv_data >> vendorguid >> item >> slot >> bagguid >> bagslot >> count; - GetPlayer()->BuyItemFromVendor(vendorguid,item,count,bagguid,slot); + GetPlayer()->BuyItemFromVendor(vendorguid,item,count,bagguid,bagslot); } void WorldSession::HandleBuyItemOpcode( WorldPacket & recv_data ) |