From c22e659d32c259414df99d3f524b390dcac2c469 Mon Sep 17 00:00:00 2001 From: Philippe Dellaert Date: Sat, 26 Nov 2022 20:09:53 -0800 Subject: [PATCH] Setting default action to info to avoid accidental overwriting sticky config --- src/commands/moderation/sticky.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/commands/moderation/sticky.ts b/src/commands/moderation/sticky.ts index 1e4c42f5..8d140c34 100644 --- a/src/commands/moderation/sticky.ts +++ b/src/commands/moderation/sticky.ts @@ -181,7 +181,7 @@ export const sticky: CommandDefinition = { let [subCommand] = args.split(/\s+/); let subArgs = args.replace(subCommand, '').trim(); if (!subCommands.includes(subCommand)) { - subCommand = 'set'; + subCommand = 'info'; subArgs = args; }