File tree Expand file tree Collapse file tree 2 files changed +10
-3
lines changed Expand file tree Collapse file tree 2 files changed +10
-3
lines changed Original file line number Diff line number Diff line change @@ -66,7 +66,10 @@ const Linkme: Command<Message> = {
6666 if ( ! user . factorioRoles ) user . factorioRoles = [ ] ;
6767 user . factorioRoles . push ( "Member" ) ;
6868 user . save ( ) ;
69- message . channel . send ( "You have been successfully linked" ) ;
69+ await message . channel . send ( "You have been successfully linked" ) ;
70+ message . channel . send (
71+ "https://tenor.com/view/parks-and-rec-parks-and-recreation-ron-swanson-gif-5603552"
72+ ) ;
7073
7174 // this may be a bit unnecessary to send it to all servers but it's easier than to
7275 // figure out from which server the linking process was initiated
Original file line number Diff line number Diff line change 11import { Message } from "discord.js" ;
22import Comfy from "../../base/Comfy" ;
33
4- export default async ( client : Comfy , oldMessage : Message , newMessage : Message ) => {
4+ export default async (
5+ client : Comfy ,
6+ oldMessage : Message ,
7+ newMessage : Message
8+ ) => {
59 if ( ! newMessage . editedAt ) return ;
610 client . emit ( "message" , newMessage ) ;
7- }
11+ } ;
You can’t perform that action at this time.
0 commit comments