diff options
author | megamage <none@none> | 2009-03-21 14:55:52 -0600 |
---|---|---|
committer | megamage <none@none> | 2009-03-21 14:55:52 -0600 |
commit | 738e139882152e8e2c5bf9496ec243d207c7806d (patch) | |
tree | f3bd77e74fae51d191da4c919ac3e6caa5828ed7 /src/game/Player.cpp | |
parent | 7de6113d908ccec0c8f1585a346bb16c5e7920f7 (diff) |
[7510] Some cleanups and commens for special forbidden slots Author: VladimirMangos
--HG--
branch : trunk
Diffstat (limited to 'src/game/Player.cpp')
-rw-r--r-- | src/game/Player.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/game/Player.cpp b/src/game/Player.cpp index 0dcd07a956e..35317d9ded8 100644 --- a/src/game/Player.cpp +++ b/src/game/Player.cpp @@ -9292,8 +9292,8 @@ uint8 Player::_CanStoreItem_InSpecificSlot( uint8 bag, uint8 slot, ItemPosCountV if(slot >= CURRENCYTOKEN_SLOT_START && slot < CURRENCYTOKEN_SLOT_END && !(false /*pProto->BagFamily & BAG_FAMILY_MASK_CURRENCY_TOKENS*/)) return EQUIP_ERR_ITEM_DOESNT_GO_INTO_BAG; - // guestbag case (disabled until proper implement) - if(slot >= QUESTBAG_SLOT_START && slot < QUESTBAG_SLOT_END && !(false /*pProto->BagFamily & BAG_FAMILY_MASK_QUEST_ITEMS*/)) + // guestbag case (not use) + if(slot >= QUESTBAG_SLOT_START && slot < QUESTBAG_SLOT_END) return EQUIP_ERR_ITEM_DOESNT_GO_INTO_BAG; // prevent cheating |