Forgot to remove debug code for testing

This commit is contained in:
Shaun Bennett 2015-11-09 03:49:12 -05:00
parent 2eaa326929
commit 05b52614fe

View File

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