|
@@ -46,6 +46,11 @@ public class AcrobaticsCommand extends SkillCommand {
|
|
protected List<String> statsDisplay(Player player, float skillValue, boolean hasEndurance, boolean isLucky) {
|
|
protected List<String> statsDisplay(Player player, float skillValue, boolean hasEndurance, boolean isLucky) {
|
|
List<String> messages = new ArrayList<String>();
|
|
List<String> messages = new ArrayList<String>();
|
|
|
|
|
|
|
|
+ if (canDodge) {
|
|
|
|
+ messages.add(getStatMessage(SubSkillType.ACROBATICS_DODGE, dodgeChance)
|
|
|
|
+ + (isLucky ? LocaleLoader.getString("Perks.Lucky.Bonus", dodgeChanceLucky) : ""));
|
|
|
|
+ }
|
|
|
|
+
|
|
if (canRoll) {
|
|
if (canRoll) {
|
|
|
|
|
|
AbstractSubSkill abstractSubSkill = InteractionManager.getAbstractByName("Roll");
|
|
AbstractSubSkill abstractSubSkill = InteractionManager.getAbstractByName("Roll");
|
|
@@ -68,11 +73,6 @@ public class AcrobaticsCommand extends SkillCommand {
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
|
|
- if (canDodge) {
|
|
|
|
- messages.add(getStatMessage(SubSkillType.ACROBATICS_DODGE, dodgeChance)
|
|
|
|
- + (isLucky ? LocaleLoader.getString("Perks.Lucky.Bonus", dodgeChanceLucky) : ""));
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
return messages;
|
|
return messages;
|
|
}
|
|
}
|
|
|
|
|