Unused method removed

This commit is contained in:
2024-03-24 09:36:01 -04:00
parent 67e0766894
commit 97c0b0bbee
-13
View File
@@ -1019,19 +1019,6 @@ public class Item extends AbstractWorldObject {
this.magicValue = this.template.item_value + calcMagicValue();
}
public void clearEnchantments() {
//Clear permanent enchantment out of database
DbManager.EnchantmentQueries.CLEAR_ENCHANTMENTS((long) this.getObjectUUID());
for (String name : this.getEffects().keySet()) {
Effect eff = this.getEffects().get(name);
if (!eff.bakedInStat())
this.endEffect(name);
}
this.effectNames.clear();
}
public void addPermanentEnchantment(String enchantID, int rank) {
AbstractPowerAction apa = PowersManager.getPowerActionByIDString(enchantID);
if (apa == null)