feat(arabot): allow all users to use happy and kill commands

This commit is contained in:
Anthony 2022-08-22 23:00:41 +01:00
parent 63d82b0f1b
commit 75f669ac56
2 changed files with 0 additions and 2 deletions

View File

@ -27,7 +27,6 @@ export class HappyCommand extends Command {
...options, ...options,
name: 'happy', name: 'happy',
description: 'Express your happiness', description: 'Express your happiness',
preconditions: [['CoordinatorOnly', 'PatreonOnly']],
}); });
} }

View File

@ -27,7 +27,6 @@ export class KillCommand extends Command {
...options, ...options,
name: 'kill', name: 'kill',
description: 'Kill a user', description: 'Kill a user',
preconditions: [['CoordinatorOnly', 'PatreonOnly']],
}); });
} }