SteamWar/BauSystem2.0
Archiviert
12
0

Fix ETA message
Alle Prüfungen waren erfolgreich
SteamWarCI Build successful

Signed-off-by: yoyosource <yoyosource@nidido.de>
Dieser Commit ist enthalten in:
yoyosource 2022-10-02 13:06:25 +02:00
Ursprung bdda84f333
Commit 765584bc9a

Datei anzeigen

@ -35,6 +35,7 @@ public interface LaufbauState {
void next();
default String eta(Player p, long start, int done, int total) {
if (done == 0) return "";
return new SimpleDateFormat(BauSystem.MESSAGE.parse("TIME", p)).format(Date.from(Instant.ofEpochMilli((System.currentTimeMillis() - start) / done * total)));
}
}