required param cannot be null

This commit is contained in:
Master Kwoth 2016-01-24 13:24:18 +01:00
parent 8194e9aed6
commit 22aba88de5

View File

@ -316,14 +316,12 @@ namespace NadekoBot.Modules
cgb.CreateCommand(".setgame") cgb.CreateCommand(".setgame")
.Description("Sets the bots game.") .Description("Sets the bots game.")
.Parameter("set_game", ParameterType.Required) .Parameter("set_game", ParameterType.Required)
.Do( e => { .Do(e => {
if (e.User.Id != NadekoBot.OwnerID || e.GetArg("set_game") == null) return; if (e.User.Id != NadekoBot.OwnerID) return;
client.SetGame(e.GetArg("set_game")); client.SetGame(e.GetArg("set_game"));
}); });
cgb.CreateCommand(".checkmyperms") cgb.CreateCommand(".checkmyperms")
.Description("Checks your userspecific permissions on this channel.") .Description("Checks your userspecific permissions on this channel.")
.Do(async e => { .Do(async e => {