From 75f669ac569016de6b65f81905c1c32ed0bb7f1e Mon Sep 17 00:00:00 2001 From: Anthony Date: Mon, 22 Aug 2022 23:00:41 +0100 Subject: [PATCH] feat(arabot): allow all users to use happy and kill commands --- src/commands/fun/happy.ts | 1 - src/commands/fun/kill.ts | 1 - 2 files changed, 2 deletions(-) diff --git a/src/commands/fun/happy.ts b/src/commands/fun/happy.ts index 3cde127..8bca5ef 100644 --- a/src/commands/fun/happy.ts +++ b/src/commands/fun/happy.ts @@ -27,7 +27,6 @@ export class HappyCommand extends Command { ...options, name: 'happy', description: 'Express your happiness', - preconditions: [['CoordinatorOnly', 'PatreonOnly']], }); } diff --git a/src/commands/fun/kill.ts b/src/commands/fun/kill.ts index a584c23..417bf93 100644 --- a/src/commands/fun/kill.ts +++ b/src/commands/fun/kill.ts @@ -27,7 +27,6 @@ export class KillCommand extends Command { ...options, name: 'kill', description: 'Kill a user', - preconditions: [['CoordinatorOnly', 'PatreonOnly']], }); }