Fishing command did an oopsie

This commit is contained in:
nossr50
2019-02-06 03:01:43 -08:00
parent 63d3a328c4
commit 98e6400dd8
5 changed files with 12 additions and 3 deletions

View File

@ -0,0 +1,4 @@
package com.gmail.nossr50.api;
public class McMMOClassLoader {
}

View File

@ -0,0 +1,4 @@
package com.gmail.nossr50.api;
public enum MinecraftVersion {
}

View File

@ -112,7 +112,7 @@ public class FishingCommand extends SkillCommand {
double luckyModifier = Permissions.lucky(player, PrimarySkillType.FISHING) ? 1.333D : 1.0D;
biteChance = percent.format(String.valueOf((rawBiteChance * 100.0D) * luckyModifier));
biteChance = percent.format((rawBiteChance * 100.0D) * luckyModifier);
}
}