Location via proxy:   [ UP ]  
[Report a bug]   [Manage cookies]                
Skip to content

Commit

Permalink
🥡 fix missing args
Browse files Browse the repository at this point in the history
  • Loading branch information
Belikhun committed May 20, 2022
1 parent 98d1e4d commit e267a67
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -112,7 +112,7 @@ public void run() {
public static String readableTime(double seconds) {
return (seconds > 120d)
? String.format("%s%.1fm&r", timeColor, (seconds / 60d))
: String.format("%s%.3fs&r", seconds);
: String.format("%s%.3fs&r", timeColor, seconds);
}

public static void handlePlayerJoin(Player player) {
Expand Down

0 comments on commit e267a67

Please sign in to comment.