Skip to content

Commit

Permalink
Merge PR #24 from e-aakash - Switch to float in activate regen event
Browse files Browse the repository at this point in the history
  • Loading branch information
jellysnake committed Jun 29, 2019
2 parents 9095ae9 + 5d8c8b0 commit 009669a
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -21,15 +21,15 @@

public class ActivateRegenEvent implements Event {
public String id;
public int value;
public float value;
public float endTime;

public ActivateRegenEvent() {
id = BASE_REGEN;
endTime = 0;
}

public ActivateRegenEvent(String id, int value, float endTime) {
public ActivateRegenEvent(String id, float value, float endTime) {
this.id = id;
this.value = value;
this.endTime = endTime;
Expand Down

0 comments on commit 009669a

Please sign in to comment.