|
@@ -60,8 +60,7 @@ public class SellList extends L2GameServerPacket
|
|
|
for (L2ItemInstance item : _activeChar.getInventory().getItems())
|
|
|
{
|
|
|
if (!item.isEquipped() && // Not equipped
|
|
|
- !item.isAugmented() && // Not augmented
|
|
|
- item.isSellable() && // Item is sellable
|
|
|
+ item.isSellable() && // Item is sellable
|
|
|
(_activeChar.getPet() == null || // Pet not summoned or
|
|
|
item.getObjectId() != _activeChar.getPet().getControlItemId())) // Pet is summoned and not the item that summoned the pet
|
|
|
{
|