Hi all! I keep my game's weapon info in an array file. The array contains both static info such as name, as well as player-specific info such as whether or not the player unlocked the item.
I save the array to local storage when the player unlocks/equips it. The issue I'm having is that after the array is saved to local storage if I change the weapon info, the changes are not updated. For instance, if I change the weapon name to something else, the weapon name still shows up as the old one when I debug preview.
Is it possible to update the static info while keeping the player's saved data in the array? Thanks!