1
0
mirror of https://github.com/mcMMO-Dev/mcMMO.git synced 2025-06-19 23:41:27 +02:00

This wasn't right.

This commit is contained in:
TfT_02 2012-11-07 13:32:30 +01:00
parent 2bdeeb2d6e
commit f5f07f7016

@ -157,7 +157,7 @@ public class Fishing {
int randomChance = 100;
if (player.hasPermission("mcmmo.perks.lucky.fishing")) {
randomChance = (int) (randomChance * 1.25);
randomChance = (int) (randomChance * 0.75);
}
if (random.nextInt(randomChance) <= ENCHANTMENT_CHANCE && Permissions.getInstance().fishingMagic(player)) {
@ -204,7 +204,7 @@ public class Fishing {
int randomChance = 100;
if (event.getPlayer().hasPermission("mcmmo.perks.lucky.fishing")) {
randomChance = (int) (randomChance * 0.75);
randomChance = (int) (randomChance * 1.25);
}
final Player player = event.getPlayer();