Skip to content

Commit

Permalink
fix: incorrect label in shuttle's "Contents" tab
Browse files Browse the repository at this point in the history
  • Loading branch information
ilyvion committed May 15, 2024
1 parent 095e2bc commit 1a49d30
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

### Fixed

- The fix for minified items from last version had a bug where it would show items with multiple counts as "ItemName x<stackCountInStorage> x<stackCountNeeded>" in the shuttle's "Content" tab. This has now been fixed to be just "ItemName x<stackCountNeeded>" as it should be.

## [0.4.0] - 2024-05-12

### Added
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ private static string FixLabel(string originalLabel, ITab_ContentsBase instance,
}
else
{
return $"{things[0].LabelCap} x{countToTransfer}";
return $"{things[0].LabelCapNoCount} x{countToTransfer}";
}
}

Expand Down

0 comments on commit 1a49d30

Please sign in to comment.