1
0
mirror of https://github.com/mcMMO-Dev/mcMMO.git synced 2026-02-18 01:42:32 +01:00

Fix Gracefull Roll chance being null

This commit is contained in:
TfT_02
2013-01-23 16:14:12 +01:00
parent 2a89e912f8
commit fb31cef68b

View File

@@ -35,8 +35,8 @@ public class AcrobaticsCommand extends SkillCommand {
//GRACEFUL ROLL
String[] gracefulRollStrings = calculateAbilityDisplayValues(Acrobatics.gracefulRollMaxBonusLevel, Acrobatics.gracefulRollMaxChance);
rollChance = gracefulRollStrings[0];
rollChanceLucky = gracefulRollStrings[1];
gracefulRollChance = gracefulRollStrings[0];
gracefulRollChanceLucky = gracefulRollStrings[1];
}
@Override