From 75a9e401ce804b91fc18c830345435d13d4477ea Mon Sep 17 00:00:00 2001 From: Alexander Date: Mon, 3 Jun 2024 18:27:42 +0200 Subject: [PATCH] fix ??? --- packages/create-robo/src/index.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/create-robo/src/index.ts b/packages/create-robo/src/index.ts index f4326b55..ec2e5f38 100644 --- a/packages/create-robo/src/index.ts +++ b/packages/create-robo/src/index.ts @@ -166,7 +166,7 @@ new Command('create-robo ') // Ask the user for their Discord credentials (token and client ID) and store them for later use // Skip this step if the user is creating a plugin // - if (!robo.isPlugin && options.noCreds) { + if (!robo.isPlugin && !options.creds) { logger.debug(`Asking for Discord credentials...`) await robo.askForDiscordCredentials() }