From f233092d36b01f244f179240f5e89dc69339ab6a Mon Sep 17 00:00:00 2001 From: Maroxy Date: Thu, 6 Jan 2022 17:44:07 +0100 Subject: [PATCH] Removed estimated counter when just sitting in launcher --- src/ts/Launcher.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/ts/Launcher.ts b/src/ts/Launcher.ts index fb3c3fa..2eb9ecb 100644 --- a/src/ts/Launcher.ts +++ b/src/ts/Launcher.ts @@ -123,7 +123,7 @@ export default class Launcher time: { // @ts-expect-error - start: discord.timer ? Math.round(Date.now() / 1000) : 0 + start: state === 'in-launcher' ? 0 : discord.timer ? Math.round(Date.now() / 1000) : 0 } });