Added in armor on apply to old weapon

This commit is contained in:
2024-08-24 23:57:19 -04:00
parent 80b9ef71cf
commit 3054f0c5f3

View File

@@ -414,6 +414,10 @@ func (item *Item) ApplyStats(otherItem Item) (success bool, err error) {
item.ItemLevel = otherItem.ItemLevel
if otherItem.Armor != nil {
item.Armor = otherItem.Armor
}
return true, nil
}