[8048] Fixed typo in HandleBuyItemInSlotOpcode.

Signed-off-by: ApoC <apoc@nymfe.net>
This commit is contained in:
nos4r2zod 2009-06-20 01:45:01 +02:00 committed by ApoC
parent 7f3be4ae6a
commit 8db10be934
2 changed files with 2 additions and 2 deletions

View file

@ -672,7 +672,7 @@ void WorldSession::HandleBuyItemInSlotOpcode( WorldPacket & recv_data )
recv_data >> vendorguid >> item >> slot >> bagguid >> bagslot >> count; 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 ) void WorldSession::HandleBuyItemOpcode( WorldPacket & recv_data )

View file

@ -1,4 +1,4 @@
#ifndef __REVISION_NR_H__ #ifndef __REVISION_NR_H__
#define __REVISION_NR_H__ #define __REVISION_NR_H__
#define REVISION_NR "8047" #define REVISION_NR "8048"
#endif // __REVISION_NR_H__ #endif // __REVISION_NR_H__