hard set mine windows

This commit is contained in:
2024-02-29 22:06:48 -06:00
parent 5713dab8cf
commit 6a4e0e32cc
+6 -1
View File
@@ -1205,7 +1205,12 @@ public class CharacterItemManager {
} }
private static void stripTempEnchants(Item i) { private static void stripTempEnchants(Item i) {
i.clearEffects(); //i.clearEffects();
for (String name : i.getEffects().keySet()) {
Effect eff = i.getEffects().get(name);
if (eff.getDuration() > 0.1f)
i.endEffect(name);
}
} }
//Used for buying MobEquipment from NPC //Used for buying MobEquipment from NPC