Removed estimated counter when just sitting in launcher

This commit is contained in:
Maroxy 2022-01-06 17:44:07 +01:00
parent ef1c002034
commit f233092d36
No known key found for this signature in database
GPG key ID: F4B27EADB21E3021

View file

@ -123,7 +123,7 @@ export default class Launcher
time: { time: {
// @ts-expect-error // @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
} }
}); });