diff --git a/docs/guide/custom-templates.md b/docs/guide/custom-templates.md index 904e59d..31df760 100644 --- a/docs/guide/custom-templates.md +++ b/docs/guide/custom-templates.md @@ -86,7 +86,7 @@ import { Message } from 'discord.js'; description: 'A basic command' }) export class {{name}}Command extends MyExtendedCommand { - public async run(message: Message) { + public async messageRun(message: Message) { return message.channel.send('Hello world!'); } }