diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/game/Player.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/game/Player.cpp b/src/game/Player.cpp index 9a8345b67e9..7f3d173015f 100644 --- a/src/game/Player.cpp +++ b/src/game/Player.cpp @@ -17800,6 +17800,7 @@ bool Player::BuyItemFromVendor(uint64 vendorguid, uint32 item, uint8 count, uint sLog.outDebug("CHEATING ATTEMPT slot > bagSize in BuyItemFromVendor playerGUID: "I64FMT" name: %s slot: %u", GetGUID(), GetName(), slot); return false; } + if(slot < pBag->GetBagSlot() && !pBag->GetItemByPos(slot)) bag = i; break; } |