Skip to content

Commit

Permalink
Update ProtectionTime.java
Browse files Browse the repository at this point in the history
  • Loading branch information
Kalibrier authored Dec 30, 2024
1 parent 1191a3a commit 8afbf67
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/main/java/de/cuuky/varo/game/start/ProtectionTime.java
Original file line number Diff line number Diff line change
Expand Up @@ -82,15 +82,15 @@ public String getCountdownSeconds() {
*
* @return the remaining protection time or null if no protection time is set
*/
public int getRemainingTime() {
return this.protectionTiimer > 0 ? this.protectionTimer : null;
public Integer getRemainingTime() {
return this.protectionTimer > 0 ? this.protectionTimer : null;
}

/**
*
* @return the protection timer or null if no protection time is set
*/
public int getProtectionTimer() {
public Integer getProtectionTimer() {
return this.protectionTimer > 0 ? protectionTimer : null;
}
}

0 comments on commit 8afbf67

Please sign in to comment.