Browse Source

Update to value in item rs constructor

combat-2
MagicBot 6 months ago
parent
commit
4d6ce2b155
  1. 6
      src/engine/objects/Item.java

6
src/engine/objects/Item.java

@ -166,8 +166,12 @@ public class Item extends AbstractWorldObject { @@ -166,8 +166,12 @@ public class Item extends AbstractWorldObject {
this.dateToUpgrade = rs.getLong("dateToUpgrade");
this.value = rs.getInt("value");
if (this.value == 0)
if (this.value == 0) {
this.value = this.template.item_value;
this.magicValue = this.value + calcMagicValue();
} else
this.magicValue = this.value; // Value was overridden in vendor inventory
}

Loading…
Cancel
Save