Update GamesModule.cs

This commit is contained in:
blitz4694 2016-07-26 11:58:57 +10:00 committed by GitHub
parent bdf3223810
commit 22c2c23d3d

View File

@ -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 =>
{