1L Silver Ingot should have "material" property of silver instead of lead #73263
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Summary
Bugfixes "1L Silver Ingot should have "material" property of silver instead of lead"
Purpose of change
I was stockpiling silver in game and noticed that the tier 1 silver ingot had the wrong material property. While it's unlikely people would encounter this outside of maximum item spawn rate, it's still not right. (Unless it is, then a note should be added)
Reproduction steps:
1: spawn in or craft a 1L size silver ingot.
Describe the solution
data/json/items/resources/metal.json : change material property of 1l_silver from
"material": [ "lead" ], to
"material": [ "silver" ],
Karol1223's metals audit ( #64568 ) fixed a lot of the metal prices, but some of the properties were still broken.
Drew4484's metal ingots pull ( #56598 ) fixed all of the metal ingot materials except this one for some reason.
Describe alternatives you've considered
If this is intended behavior, there should be a note to explain why it is different from every other metal ingot.
Testing
Spawning the item using the debug menu now shows "silver" as the material.
Additional context