Made the casting a little less complex.

No need to cast them BOTH to a double, only one is needed.
This commit is contained in:
gmcferrin 2013-01-07 17:27:52 -05:00
parent d69cf09d4e
commit 1d990979ac

View File

@ -45,7 +45,7 @@ public class MiningManager {
randomChance = (int) (randomChance * 0.75); randomChance = (int) (randomChance * 0.75);
} }
float chance = (float) (((double) Mining.DOUBLE_DROPS_MAX_CHANCE / (double) Mining.DOUBLE_DROPS_MAX_BONUS_LEVEL) * blockHandler.skillModifier); float chance = (float) (((double) Mining.DOUBLE_DROPS_MAX_CHANCE / Mining.DOUBLE_DROPS_MAX_BONUS_LEVEL) * blockHandler.skillModifier);
if (chance > Mining.getRandom().nextInt(randomChance)) { if (chance > Mining.getRandom().nextInt(randomChance)) {
blockHandler.processDrops(); blockHandler.processDrops();