diff options
author | Machiavelli <none@none> | 2009-06-18 18:30:11 +0200 |
---|---|---|
committer | Machiavelli <none@none> | 2009-06-18 18:30:11 +0200 |
commit | 6b13edd6d112ad098f6f0d611aed7ecf27994d8b (patch) | |
tree | 283f7b46545031e6210b4021cb72d6840b75a671 /src | |
parent | a4dafbf8ec26fa33ce51140bb77b0b1a68df93ff (diff) | |
parent | c52e7e801c217eec00fd798ff9ea0450c64d49e2 (diff) |
*Merge
--HG--
branch : trunk
Diffstat (limited to 'src')
-rw-r--r-- | src/game/Player.cpp | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/game/Player.cpp b/src/game/Player.cpp index d82fca25877..aae851345f3 100644 --- a/src/game/Player.cpp +++ b/src/game/Player.cpp @@ -16155,8 +16155,9 @@ void Player::_SaveInventory() if (test == NULL) { - sLog.outError("Player(GUID: %u Name: %s)::_SaveInventory - the bag(%d) and slot(%d) values for the item with guid %d are incorrect, the player doesn't have an item at that position!", GetGUIDLow(), GetName(), item->GetBagSlot(), item->GetSlot(), item->GetGUIDLow()); - error = true; + sLog.outCrash("Player(GUID: %u Name: %s)::_SaveInventory - the bag(%d) and slot(%d) values for the item with guid %d (state %d) are incorrect, the player doesn't have an item at that position!", GetGUIDLow(), GetName(), item->GetBagSlot(), item->GetSlot(), item->GetGUIDLow(), (int32)item->GetState()); + //error = true; + //now some items in bags cannot be saved but after cleansup they appear again } else if (test != item) { |