We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 833a4cc commit 9c23fefCopy full SHA for 9c23fef
1 file changed
src/services/command/CombatCommand.java
@@ -78,6 +78,7 @@ public class CombatCommand extends BaseSWGCommand {
78
private float executeTime;
79
private float warmupTime;
80
private float vigorCost; // for commando kill meter and bm specials
81
+ private float criticalChance;
82
83
public CombatCommand(String commandName) {
84
super(commandName);
@@ -705,6 +706,14 @@ public float getVigorCost() {
705
706
public void setVigorCost(float vigorCost) {
707
this.vigorCost = vigorCost;
708
}
709
+
710
+ public float getCriticalChance() {
711
+ return criticalChance;
712
+ }
713
714
+ public void setCriticalChance(float criticalChance) {
715
+ this.criticalChance = criticalChance;
716
717
718
719
0 commit comments