Because this way is easier.

This commit is contained in:
GJ
2013-01-17 15:20:20 -05:00
parent c5ae4ca615
commit 857bb00c8a
12 changed files with 23 additions and 23 deletions

View File

@ -28,7 +28,7 @@ public class ArcheryManager extends SkillManager {
int randomChance = 100;
if (Permissions.luckyArchery(player)) {
randomChance = (int) (randomChance * 0.75);
randomChance = 75;
}
double chance = (Archery.retrieveMaxChance / Archery.retrieveMaxBonusLevel) * eventHandler.skillModifier;
@ -53,7 +53,7 @@ public class ArcheryManager extends SkillManager {
int randomChance = 100;
if (Permissions.luckyArchery(player)) {
randomChance = (int) (randomChance * 0.75);
randomChance = 75;
}
double chance = (Archery.dazeMaxBonus / Archery.dazeMaxBonusLevel) * eventHandler.skillModifier;