mirror of
https://github.com/mcMMO-Dev/mcMMO.git
synced 2024-11-22 21:26:46 +01:00
Fixed fishing chance display values.
This commit is contained in:
parent
b448315f20
commit
569e87847f
@ -60,7 +60,7 @@ public class FishingCommand extends SkillCommand {
|
||||
|
||||
// MASTER ANGLER
|
||||
if (canMasterAngler) {
|
||||
biteChance = calculateAbilityDisplayValues((skillValue / 10) / (isStorming ? 300 : 500))[0];
|
||||
biteChance = calculateAbilityDisplayValues(((Math.max((skillValue / 10.0), 1.0)) / (isStorming ? 300 : 500)) * 100.0)[0];
|
||||
}
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user