Value logic update

This commit is contained in:
2024-03-25 04:26:55 -04:00
parent eba905b15d
commit 4fa5ccf416
+4 -1
View File
@@ -160,6 +160,9 @@ public class Item extends AbstractWorldObject {
this.dateToUpgrade = rs.getLong("item_dateToUpgrade");
this.value = rs.getInt("item_value");
if (this.value == 0)
this.value = this.template.item_value;
}
public static void _serializeForClientMsg(Item item, ByteBufferWriter writer)
@@ -245,7 +248,7 @@ public class Item extends AbstractWorldObject {
} else
writer.putInt(item.numberOfItems); // Amount of gold
} else
writer.putInt(item.template.item_value);
writer.putInt(item.value);
writer.putInt(item.getValue());