Put ALL treasures in the menu so support can award chests even if they don't have any

This commit is contained in:
Spencer 2018-01-05 21:56:37 -05:00 committed by Alexander Meech
parent e5e9ee9e46
commit 3fd8a5bb35
1 changed files with 0 additions and 1 deletions

View File

@ -90,7 +90,6 @@ public class SupportChestPage extends SupportPage
private LinkedList<TreasureType> getTypesList()
{
return Arrays.stream(TreasureType.values())
.filter(treasureType -> _treasurePurchasedShards.containsKey(treasureType) || _treasurePurchasedShop.containsKey(treasureType))
.collect(Collectors.toCollection(LinkedList::new));
}