diff --git a/L2J_Mobius_C6_Interlude/java/org/l2jmobius/gameserver/model/actor/instance/PlayerInstance.java b/L2J_Mobius_C6_Interlude/java/org/l2jmobius/gameserver/model/actor/instance/PlayerInstance.java index 3bc0582b26..b2b8dc3f7d 100644 --- a/L2J_Mobius_C6_Interlude/java/org/l2jmobius/gameserver/model/actor/instance/PlayerInstance.java +++ b/L2J_Mobius_C6_Interlude/java/org/l2jmobius/gameserver/model/actor/instance/PlayerInstance.java @@ -3853,12 +3853,6 @@ public class PlayerInstance extends Playable { item.changeCountWithoutTrace(process, -count, this, reference); item.setLastChange(ItemInstance.MODIFIED); - - // could do also without saving, but let's save approx 1 of 10 - if ((GameTimeController.getGameTicks() % 10) == 0) - { - item.updateDatabase(); - } _inventory.refreshWeight(); } }