Skip to content

Commit

Permalink
0.13.10
Browse files Browse the repository at this point in the history
  • Loading branch information
spmuladoo committed Aug 28, 2020
1 parent a6893fe commit 69a737e
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/etc/Constants.java
Expand Up @@ -157,7 +157,7 @@ public class Constants {

/** Frame Title **/
public static final String APP_TITLE = "Warframe Weapon DPS Calculator";
public static final String APP_VERSION = "v0.13.9";
public static final String APP_VERSION = "v0.13.10";

/** ToolTips **/
public static final String NAME_TOOL_TIP = "The weapon's name.";
Expand Down
2 changes: 1 addition & 1 deletion src/ttk/TTKTarget.java
Expand Up @@ -1573,7 +1573,7 @@ public double calculateRandomizedTimeToKill() {
coldProcMult = 0.3;
}
}
Vector<Double> tempColdStacks = (Vector<Double>) coldStacks.clone();
Vector<Integer> tempColdStacks = (Vector<Integer>) coldStacks.clone();
p = 0;
for (int i = 1; i < tempColdStacks.size(); i++) {
if (tempColdStacks.get(i) <= 0) { // && i > 0
Expand Down

0 comments on commit 69a737e

Please sign in to comment.