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
SUMMARY: Content "fix steel_lump volume"
Purpose of change
Bring stats of "lump of steel"
steel_lump
in line with "chunk of steel" and "scrap metal".Thanks to helpful comments in
metals.json
showing the math, it is clear that there was a mistake in the volume forsteel_lump
.In-game, scrap metal (10) is 500g/250ml which is approx 25% as heavy as the quoted 1.9kg/250ml of a solid block of steel.
In-game, chunk of steel (4) is 1kg/250ml which is approx 50% as heavy as the quoted 1.9kg/250ml of a solid block of steel.
In-game, lump of steel (1) is 1kg/250ml which is not the expected 100% density given by the comment.
Describe the solution
Change the volume of "lump of steel"
steel_lump
in/items/resources/metals.json
"volume": 2,
"volume": 1,
This gives lump of steel (2) at 2kg/250ml which is what we'd expect.