From 2c98aa872de58b6d7a50155af179b32bd0249a5a Mon Sep 17 00:00:00 2001 From: OskarZyg <56176746+OskarZyg@users.noreply.github.com> Date: Tue, 27 Jul 2021 23:35:40 +0100 Subject: [PATCH] Fix formatting when downloading paper server --- src/questions/paper.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/questions/paper.ts b/src/questions/paper.ts index 4c8b301..5b511b1 100644 --- a/src/questions/paper.ts +++ b/src/questions/paper.ts @@ -31,7 +31,7 @@ export const promptServerVersion = (): void => { chalk.white.bold('Ensure that this build is safe to use by checking the Paper GitHub/Discord for potential issues.'), ), ); - const spinner = ora().start('Downloading' + answer + 'server...'); + const spinner = ora().start('Downloading ' + answer + ' server...'); axios.get('https://papermc.io/api/v2/projects/paper/versions/' + answer).then((resp) => { const builds = resp.data.builds;