fix: account for belts in examine

This commit is contained in:
Anna 2021-12-06 20:58:17 -05:00
parent 54da466e10
commit 6f7070ae18
Signed by: anna
GPG Key ID: 0B391D8F06FCD9E0
1 changed files with 3 additions and 1 deletions

View File

@ -58,7 +58,9 @@ namespace Glamaholic.Ui.Helpers {
var stainId = item.Stain;
items[(PlateSlot) i] = new SavedGlamourItem {
// for some reason, this still accounts for belts in EW
var slot = i > 5 ? i - 1 : i;
items[(PlateSlot) slot] = new SavedGlamourItem {
ItemId = itemId,
StainId = stainId,
};