mirror of
https://github.com/veganhacktivists/arabot.git
synced 2025-12-21 03:58:05 +01:00
fix(arabot): change order of preconditions
This commit is contained in:
@@ -27,7 +27,7 @@ export class HappyCommand extends Command {
|
||||
...options,
|
||||
name: 'happy',
|
||||
description: 'Express your happiness',
|
||||
preconditions: [['PatreonOnly', 'CoordinatorOnly']],
|
||||
preconditions: [['CoordinatorOnly', 'PatreonOnly']],
|
||||
});
|
||||
}
|
||||
|
||||
|
||||
@@ -27,7 +27,7 @@ export class HugCommand extends Command {
|
||||
...options,
|
||||
name: 'hug',
|
||||
description: 'Hug a user',
|
||||
preconditions: [['PatreonOnly', 'CoordinatorOnly']],
|
||||
preconditions: [['CoordinatorOnly', 'PatreonOnly']],
|
||||
});
|
||||
}
|
||||
|
||||
|
||||
@@ -27,7 +27,7 @@ export class KillCommand extends Command {
|
||||
...options,
|
||||
name: 'kill',
|
||||
description: 'Kill a user',
|
||||
preconditions: [['PatreonOnly', 'CoordinatorOnly']],
|
||||
preconditions: [['CoordinatorOnly', 'PatreonOnly']],
|
||||
});
|
||||
}
|
||||
|
||||
|
||||
@@ -27,7 +27,7 @@ export class PokeCommand extends Command {
|
||||
...options,
|
||||
name: 'poke',
|
||||
description: 'Poke a user',
|
||||
preconditions: [['PatreonOnly', 'CoordinatorOnly']],
|
||||
preconditions: [['CoordinatorOnly', 'PatreonOnly']],
|
||||
});
|
||||
}
|
||||
|
||||
|
||||
@@ -27,7 +27,7 @@ export class SadCommand extends Command {
|
||||
...options,
|
||||
name: 'sad',
|
||||
description: 'Express your sadness',
|
||||
preconditions: [['PatreonOnly', 'CoordinatorOnly']],
|
||||
preconditions: [['CoordinatorOnly', 'PatreonOnly']],
|
||||
});
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user