aboutsummaryrefslogtreecommitdiff
path: root/src/game/Player.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/game/Player.cpp')
-rw-r--r--src/game/Player.cpp4
1 files changed, 2 insertions, 2 deletions
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())