diff --git a/L2J_Mobius_Underground/java/com/l2jmobius/gameserver/model/itemcontainer/Inventory.java b/L2J_Mobius_Underground/java/com/l2jmobius/gameserver/model/itemcontainer/Inventory.java index bda2d4101f..39049176e2 100644 --- a/L2J_Mobius_Underground/java/com/l2jmobius/gameserver/model/itemcontainer/Inventory.java +++ b/L2J_Mobius_Underground/java/com/l2jmobius/gameserver/model/itemcontainer/Inventory.java @@ -501,12 +501,6 @@ public abstract class Inventory extends ItemContainer update = true; } - // Very and apply visual set - if (verifyAndApply(player, item, L2ItemInstance::getVisualId)) - { - update = true; - } - if (update) { player.sendSkillList(); @@ -621,12 +615,6 @@ public abstract class Inventory extends ItemContainer remove = true; } - // verify and remove visual set bonus - if (verifyAndRemove(player, item, L2ItemInstance::getVisualId)) - { - remove = true; - } - if (remove) { player.checkItemRestriction();