mirror of
https://github.com/2006-Scape/Parabot.git
synced 2026-07-03 08:39:09 +00:00
[TASK] Removed append
This commit is contained in:
@@ -114,7 +114,7 @@ public class Timer {
|
||||
elapsed -= minute * 60000;
|
||||
int second = (int) (elapsed / 1000);
|
||||
if (day > 0) {
|
||||
b.append(day < 10 ? "0" : "").append(day).append("d:");
|
||||
b.append(day).append("d:");
|
||||
}
|
||||
b.append(hour < 10 ? "0" : "").append(hour).append(":");
|
||||
b.append(minute < 10 ? "0" : "").append(minute).append(":");
|
||||
|
||||
Reference in New Issue
Block a user