From 644b3ea3cd1301a2570f9d52be8569d70d313c81 Mon Sep 17 00:00:00 2001 From: Anthony Date: Tue, 23 Aug 2022 00:35:29 +0100 Subject: [PATCH] fix(arabot): flipped what command are patreon only --- src/commands/fun/happy.ts | 1 + src/commands/fun/hug.ts | 1 - 2 files changed, 1 insertion(+), 1 deletion(-) diff --git a/src/commands/fun/happy.ts b/src/commands/fun/happy.ts index da3425a..7d62023 100644 --- a/src/commands/fun/happy.ts +++ b/src/commands/fun/happy.ts @@ -27,6 +27,7 @@ class HappyCommand extends Command { ...options, name: 'happy', description: 'Express your happiness', + preconditions: [['CoordinatorOnly', 'PatreonOnly']], }); } diff --git a/src/commands/fun/hug.ts b/src/commands/fun/hug.ts index e08a4e7..d305450 100644 --- a/src/commands/fun/hug.ts +++ b/src/commands/fun/hug.ts @@ -27,7 +27,6 @@ class HugCommand extends Command { ...options, name: 'hug', description: 'Hug a user', - preconditions: [['CoordinatorOnly', 'PatreonOnly']], }); }