diff --git a/templates/typescript/src/commands/ping.ts b/templates/typescript/src/commands/ping.ts index a65644f..18a7d3a 100644 --- a/templates/typescript/src/commands/ping.ts +++ b/templates/typescript/src/commands/ping.ts @@ -6,6 +6,6 @@ export default commandModule({ description: 'A ping command', //alias : [], execute: async (ctx, args) => { - await ctx.reply({ content: 'Pong 🏓' }); + await ctx.reply('Pong 🏓'); }, });