Update to value in item rs constructor

This commit is contained in:
2024-05-12 12:06:30 -04:00
parent b2c9331899
commit 4d6ce2b155
+5 -1
View File
@@ -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
}