Dealing with a few minor issues.

This commit is contained in:
Glitchfinder
2012-11-13 14:27:58 -08:00
parent 506efec858
commit a61423aa99
2 changed files with 9 additions and 2 deletions

View File

@ -25,7 +25,11 @@ public class FishingCommand extends SkillCommand {
protected void dataCalculations() {
lootTier = Fishing.getFishingLootTier(profile);
magicChance = percent.format((float) lootTier / 15);
shakeChance = String.valueOf(Fishing.getShakeChance(lootTier));
int dropChance = Fishing.getShakeChance(lootTier);
if (player.hasPermission("mcmmo.perks.lucky.fishing")) {
dropChance = (int) (dropChance * 1.25);
}
shakeChance = String.valueOf(dropChance);
if (skillValue >= 1000) {
fishermansDietRank = "5";