Update GamesModule.cs
This commit is contained in:
		@@ -36,7 +36,7 @@ namespace NadekoBot.Modules.Games
 | 
			
		||||
                commands.ForEach(cmd => cmd.Init(cgb));
 | 
			
		||||
 | 
			
		||||
                cgb.CreateCommand(Prefix + "choose")
 | 
			
		||||
                  .Description($"Chooses a thing from a list of things | {Prefix}choose Get up;Sleep;Sleep more")
 | 
			
		||||
                  .Description($"Chooses a thing from a list of things | `{Prefix}choose Get up;Sleep;Sleep more`")
 | 
			
		||||
                  .Parameter("list", ParameterType.Unparsed)
 | 
			
		||||
                  .Do(async e =>
 | 
			
		||||
                  {
 | 
			
		||||
@@ -50,7 +50,7 @@ namespace NadekoBot.Modules.Games
 | 
			
		||||
                  });
 | 
			
		||||
 | 
			
		||||
                cgb.CreateCommand(Prefix + "8ball")
 | 
			
		||||
                    .Description($"Ask the 8ball a yes/no question. | {Prefix}8ball should i do something")
 | 
			
		||||
                    .Description($"Ask the 8ball a yes/no question. | `{Prefix}8ball should i do something`")
 | 
			
		||||
                    .Parameter("question", ParameterType.Unparsed)
 | 
			
		||||
                    .Do(async e =>
 | 
			
		||||
                    {
 | 
			
		||||
@@ -67,7 +67,7 @@ namespace NadekoBot.Modules.Games
 | 
			
		||||
                    });
 | 
			
		||||
 | 
			
		||||
                cgb.CreateCommand(Prefix + "rps")
 | 
			
		||||
                    .Description($"Play a game of rocket paperclip scissors with Nadeko. | {Prefix}rps scissors")
 | 
			
		||||
                    .Description($"Play a game of rocket paperclip scissors with Nadeko. | `{Prefix}rps scissors`")
 | 
			
		||||
                    .Parameter("input", ParameterType.Required)
 | 
			
		||||
                    .Do(async e =>
 | 
			
		||||
                    {
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user