Skip to content

Commit

Permalink
0.13.11
Browse files Browse the repository at this point in the history
  • Loading branch information
spmuladoo authored Oct 11, 2020
1 parent 69a737e commit d19cbc0
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
Original file line number Diff line number Diff line change
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.10";
public static final String APP_VERSION = "v0.13.11";

/** ToolTips **/
public static final String NAME_TOOL_TIP = "The weapon's name.";
Expand Down
2 changes: 1 addition & 1 deletion src/ttk/TTKTarget.java
Original file line number Diff line number Diff line change
Expand Up @@ -806,7 +806,7 @@ public double calculateRandomizedTimeToKill() {
// is it time to shoot?
if (shotTimer <= 0) {

millisecondMult = Math.min(millisecondMult ++, 5);
millisecondMult = Math.min(millisecondMult + 1 , 5);

// Kohm Pellets
localProjectileCount = Main.finalProjectileCount;
Expand Down

0 comments on commit d19cbc0

Please sign in to comment.