mirror of
https://github.com/qwerinope/qweribot.git
synced 2025-12-19 08:41:39 +01:00
add special alias to docs, remove accidental import, add fake modme command
This commit is contained in:
14
src/commands/fakemodme.ts
Normal file
14
src/commands/fakemodme.ts
Normal file
@@ -0,0 +1,14 @@
|
||||
import { Command, sendMessage } from "commands";
|
||||
import { timeout } from "lib/timeout";
|
||||
|
||||
export default new Command({
|
||||
name: 'fakemodme',
|
||||
aliases: ['modme'],
|
||||
usertype: 'chatter',
|
||||
execution: async (_msg, user) => {
|
||||
await Promise.all([
|
||||
timeout(user, "NO MODME", 60),
|
||||
sendMessage(`NO MODME COMMAND!!! UltraMad`)
|
||||
]);
|
||||
}
|
||||
});
|
||||
Reference in New Issue
Block a user