mirror of
https://github.com/qwerinope/qweribot.git
synced 2025-12-20 05:51:39 +01:00
disabled items can no longer be used with !use, admingive is now disableable, removed command specific intents, simplified command permission system
This commit is contained in:
@@ -1,10 +1,6 @@
|
||||
import { Command, sendMessage } from ".";
|
||||
|
||||
// This command is purely for testing
|
||||
export default new Command('ping',
|
||||
['ping'],
|
||||
[],
|
||||
async msg => {
|
||||
await sendMessage('pong!', msg.messageId);
|
||||
}
|
||||
);
|
||||
export default new Command('ping', ['ping'], 'chatter', async msg => {
|
||||
await sendMessage('pong!', msg.messageId);
|
||||
});
|
||||
|
||||
Reference in New Issue
Block a user