Skip to content

Commit 9c23fef

Browse files
author
Ziggeh
committed
Added criticalChance to CombatCommand
1 parent 833a4cc commit 9c23fef

1 file changed

Lines changed: 9 additions & 0 deletions

File tree

src/services/command/CombatCommand.java

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -78,6 +78,7 @@ public class CombatCommand extends BaseSWGCommand {
7878
private float executeTime;
7979
private float warmupTime;
8080
private float vigorCost; // for commando kill meter and bm specials
81+
private float criticalChance;
8182

8283
public CombatCommand(String commandName) {
8384
super(commandName);
@@ -705,6 +706,14 @@ public float getVigorCost() {
705706
public void setVigorCost(float vigorCost) {
706707
this.vigorCost = vigorCost;
707708
}
709+
710+
public float getCriticalChance() {
711+
return criticalChance;
712+
}
713+
714+
public void setCriticalChance(float criticalChance) {
715+
this.criticalChance = criticalChance;
716+
}
708717

709718

710719

0 commit comments

Comments
 (0)