diff --git a/src/handlers/dynamicIcon.handler.ts b/src/handlers/dynamicIcon.handler.ts index 871a77e..48e6afc 100644 --- a/src/handlers/dynamicIcon.handler.ts +++ b/src/handlers/dynamicIcon.handler.ts @@ -33,7 +33,7 @@ export const dynamicIconHandler: Handler = (client) => { const currentTime = Date.now() - startTime; const currentProgress = currentTime / totalTime; console.log( - `Current Progress at ${new Date().toLocaleString()} is ${currentProgress}` + `Current Progress at ${new Date().toLocaleString()} is ${Math.round((currentProgress) * 100)}%` ); message.guild?.setIcon( await stream2buffer(await generateIcon(currentProgress / 2))