who put a timeout here
This commit is contained in:
parent
f8a001f4da
commit
e26803a17c
1 changed files with 1 additions and 2 deletions
|
@ -1,5 +1,4 @@
|
||||||
import Command from "../../struct/Command";
|
import Command from "../../struct/Command";
|
||||||
import { Message } from "@janderedev/revolt.js/dist/maps/Messages";
|
|
||||||
import MessageCommandContext from "../../struct/MessageCommandContext";
|
import MessageCommandContext from "../../struct/MessageCommandContext";
|
||||||
|
|
||||||
export default {
|
export default {
|
||||||
|
@ -8,6 +7,6 @@ export default {
|
||||||
description: 'Test command',
|
description: 'Test command',
|
||||||
category: 'misc',
|
category: 'misc',
|
||||||
run: (message: MessageCommandContext, args: string[]) => {
|
run: (message: MessageCommandContext, args: string[]) => {
|
||||||
setTimeout(() => message.reply('Beep boop.'), 1000);
|
message.reply('Beep boop.');
|
||||||
}
|
}
|
||||||
} as Command;
|
} as Command;
|
||||||
|
|
Loading…
Reference in a new issue