Removed NotSet from ItemRarity enum

This commit is contained in:
Ben Wallis
2018-12-05 20:39:20 +00:00
parent 4052d6e020
commit 79274df0fb
3 changed files with 8 additions and 15 deletions

View File

@@ -121,10 +121,8 @@ namespace Filtration.ObjectModel
return PathOfExileNamedColors.Colors[PathOfExileNamedColor.QuestItem];
}
return ItemRarity != ItemRarity.NotSet ? ItemRarity.DefaultRarityTextColor() : PathOfExileNamedColors.Colors[PathOfExileNamedColor.WhiteItem];
return ItemRarity.DefaultRarityTextColor();
}
}
}
}