fix: account for belts in examine

This commit is contained in:
Anna 2021-12-06 20:58:17 -05:00
parent 578dd61cd2
commit 04526fff2e
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,
};