mirror of
https://github.com/veganhacktivists/arabot.git
synced 2025-05-19 01:24:14 +02:00
Merge pull request #28 from smyalygames/main
fix(arabot): change order of preconditions
This commit is contained in:
commit
8f04eb943f
@ -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']],
|
||||
});
|
||||
}
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user