Merge branch 'master' of ssh://184.154.0.242:7999/min/mineplex into MC_1.8

This commit is contained in:
libraryaddict 2015-11-08 17:56:34 +13:00
commit c4d6bcba02
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();
} }