Remove debug code

This commit is contained in:
Shaun Bennett 2015-11-07 13:53:34 -05:00
parent e1f56a5d5a
commit bf97cf5d77
1 changed files with 2 additions and 2 deletions

View File

@ -398,9 +398,9 @@ public class RewardManager
RewardRarity rarity = type.generateRarity(requiresUncommon); RewardRarity rarity = type.generateRarity(requiresUncommon);
//Dont give Rank Upgrade if already has Titan //Dont give Rank Upgrade if already has Titan
if (true || rarity == RewardRarity.MYTHICAL) if (rarity == RewardRarity.MYTHICAL)
{ {
if (canGiveMythical && type == RewardType.MythicalChest/* && Math.random() <= 0.1*/) if (canGiveMythical && type == RewardType.MythicalChest && Math.random() <= 0.1)
{ {
return getLogitechPrize(); return getLogitechPrize();
} }