Nerf fishing... again.

This commit is contained in:
GJ 2013-04-12 17:48:04 -04:00
parent 569e87847f
commit 5dc40f3c03
2 changed files with 2 additions and 2 deletions

View File

@ -60,7 +60,7 @@ public class FishingCommand extends SkillCommand {
// MASTER ANGLER // MASTER ANGLER
if (canMasterAngler) { if (canMasterAngler) {
biteChance = calculateAbilityDisplayValues(((Math.max((skillValue / 10.0), 1.0)) / (isStorming ? 300 : 500)) * 100.0)[0]; biteChance = calculateAbilityDisplayValues(((Math.max((skillValue / 100.0), 1.0)) / (isStorming ? 300 : 500)) * 100.0)[0];
} }
} }

View File

@ -91,7 +91,7 @@ public class FishingManager extends SkillManager {
} }
public void masterAngler(Fish hook) { public void masterAngler(Fish hook) {
hook.setBiteChance(Math.min(hook.getBiteChance() * Math.max((getSkillLevel() / 10.0), 1.0), 1.0)); hook.setBiteChance(Math.min(hook.getBiteChance() * Math.max((getSkillLevel() / 100.0), 1.0), 1.0));
} }
/** /**