mirror of
https://github.com/qwerinope/qweribot.git
synced 2025-12-19 08:41:39 +01:00
15 lines
374 B
TypeScript
15 lines
374 B
TypeScript
import { Command, sendMessage } from "lib/commandUtils";
|
|
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 UltraMad UltraMad`)
|
|
]);
|
|
}
|
|
});
|