Skip to content

Commit

Permalink
Fix other chat commands not working
Browse files Browse the repository at this point in the history
  • Loading branch information
viral32111 committed Nov 4, 2022
1 parent f6a3329 commit 4fef9c0
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion Source/Features/MiscChatCommands.cs
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,10 @@ public static void Setup() {

// Register the chat commands
ChatCommand.Register( HelloWorldCommand );
ChatCommand.Register( RandomNumberCommand );
ChatCommand.Register( ApertureScienceCommand );
ChatCommand.Register( SocialMediasCommand );
ChatCommand.Register( WhoAmICommand );

}

Expand All @@ -28,7 +32,7 @@ public static async Task RandomNumberCommand( Message message ) {

[ChatCommand( "cake" )]
public static async Task ApertureScienceCommand( Message message ) {
await message.Reply( "This was a triumph!\nI'm making a note here: Huge success!\nIt's hard to overstate my satisfaction.\n\nWe do what we must because we can. For the good of all of us. Except the ones who are dead.\n\nBut there's no sense crying over every mistake.\nYou just keep on trying 'til you run out of cake." );
await message.Reply( "This was a triumph! I'm making a note here: Huge success! It's hard to overstate my satisfaction. We do what we must because we can. For the good of all of us. Except the ones who are dead. But there's no sense crying over every mistake. You just keep on trying 'til you run out of cake." );
}

[ChatCommand( "socials", new string[] { "twitter" } )]
Expand Down

0 comments on commit 4fef9c0

Please sign in to comment.