Update GamesModule.cs
This commit is contained in:
parent
bdf3223810
commit
22c2c23d3d
@ -36,7 +36,7 @@ namespace NadekoBot.Modules.Games
|
|||||||
commands.ForEach(cmd => cmd.Init(cgb));
|
commands.ForEach(cmd => cmd.Init(cgb));
|
||||||
|
|
||||||
cgb.CreateCommand(Prefix + "choose")
|
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)
|
.Parameter("list", ParameterType.Unparsed)
|
||||||
.Do(async e =>
|
.Do(async e =>
|
||||||
{
|
{
|
||||||
@ -50,7 +50,7 @@ namespace NadekoBot.Modules.Games
|
|||||||
});
|
});
|
||||||
|
|
||||||
cgb.CreateCommand(Prefix + "8ball")
|
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)
|
.Parameter("question", ParameterType.Unparsed)
|
||||||
.Do(async e =>
|
.Do(async e =>
|
||||||
{
|
{
|
||||||
@ -67,7 +67,7 @@ namespace NadekoBot.Modules.Games
|
|||||||
});
|
});
|
||||||
|
|
||||||
cgb.CreateCommand(Prefix + "rps")
|
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)
|
.Parameter("input", ParameterType.Required)
|
||||||
.Do(async e =>
|
.Do(async e =>
|
||||||
{
|
{
|
||||||
|
Loading…
Reference in New Issue
Block a user