CodedRed-Spigot / PlayTimes

The best /playtime plugin! PAPI support, offline checks, API & more!
https://www.spigotmc.org/resources/playtimes-check-players-playtime-server-uptime.58858/
GNU General Public License v3.0
10 stars 13 forks source link

[SUGGESTION] Extra placeholders #68

Open xOnlyFadi opened 3 months ago

xOnlyFadi commented 3 months ago

Suggestion

Description:

Benefits:

Implementation:


  public String returnSeconds(long time) {
          return Integer.toString(time);
  }

  public String returnMinutes(long time) {
        return Long.toString(TimeUnit.SECONDS.toMinutes(time));

  }