From 8334693fe73f0d63f0738028a5a2365554ea97b3 Mon Sep 17 00:00:00 2001 From: krz Date: Thu, 25 Jun 2009 17:14:56 +0200 Subject: Backported from TC2: *Fix typo causing problems with buying items. --HG-- branch : trunk --- src/game/Player.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src') diff --git a/src/game/Player.cpp b/src/game/Player.cpp index 7e400be4cb0..525e1448ce8 100644 --- a/src/game/Player.cpp +++ b/src/game/Player.cpp @@ -17131,9 +17131,9 @@ bool Player::BuyItemFromVendor(uint64 vendorguid, uint32 item, uint8 count, uint { // cheating attempt if(count < 1) count = 1; - + // cheating attempt - if(slot > MAX_BAG_SIZE) + if(slot > MAX_BAG_SIZE && slot != NULL_SLOT) return false; if(!isAlive()) -- cgit v1.2.3