Changed various values to double in advanced.yml for the sake of consistency.

This commit is contained in:
GJ
2013-09-12 14:18:13 -04:00
parent 58c7dcb705
commit 25e4700ef9
15 changed files with 121 additions and 119 deletions

View File

@ -226,7 +226,7 @@ public class FishingManager extends SkillManager {
*
* @return Shake Mob probability
*/
public int getShakeProbability() {
public double getShakeProbability() {
int skillLevel = getSkillLevel();
for (Tier tier : Tier.values()) {
@ -235,7 +235,7 @@ public class FishingManager extends SkillManager {
}
}
return 0;
return 0.0;
}
/**