diff --git a/src/features/april-fools/american-spelling.ts b/src/features/april-fools/american-spelling.ts index a9802308..9e981258 100644 --- a/src/features/april-fools/american-spelling.ts +++ b/src/features/april-fools/american-spelling.ts @@ -45,9 +45,7 @@ export default { return; } - await msg.delete(); - - msg.channel.send( + await msg.reply( SUPER_SARCASTIC_REPLIES_TO_BRITISH_SPELLING_WORDS[ Math.floor( Math.random() * @@ -55,5 +53,7 @@ export default { ) ], ); + + await msg.delete(); }, } as ChannelHandlers;