diff --git a/NadekoBot/Classes/NadekoStats.cs b/NadekoBot/Classes/NadekoStats.cs index 5df7e691..57dd7c35 100644 --- a/NadekoBot/Classes/NadekoStats.cs +++ b/NadekoBot/Classes/NadekoStats.cs @@ -11,7 +11,7 @@ namespace NadekoBot { public class NadekoStats { - public string BotVersion = "0.8-beta10"; + public string BotVersion = "0.8-beta11"; private static readonly NadekoStats _instance = new NadekoStats(); public static NadekoStats Instance => _instance; diff --git a/NadekoBot/Modules/Administration.cs b/NadekoBot/Modules/Administration.cs index 17667aa4..2f81f25a 100644 --- a/NadekoBot/Modules/Administration.cs +++ b/NadekoBot/Modules/Administration.cs @@ -436,6 +436,7 @@ namespace NadekoBot.Modules { await m.Delete(); }); }); + cgb.CreateCommand(".newname") .Alias(".setname") .Description("Give the bot a new name.") @@ -445,6 +446,7 @@ namespace NadekoBot.Modules { await client.CurrentUser.Edit(NadekoBot.password, e.GetArg("new_name")); }); + cgb.CreateCommand(".newavatar") .Alias(".setavatar") .Description("Sets a new avatar image for the NadekoBot.") @@ -468,6 +470,7 @@ namespace NadekoBot.Modules { // Send confirm. await e.Send("New avatar set."); }); + cgb.CreateCommand(".setgame") .Description("Sets the bots game.") .Parameter("set_game", ParameterType.Unparsed) diff --git a/NadekoBot/Modules/Games.cs b/NadekoBot/Modules/Games.cs index 77dbd043..59758838 100644 --- a/NadekoBot/Modules/Games.cs +++ b/NadekoBot/Modules/Games.cs @@ -51,7 +51,7 @@ namespace NadekoBot.Modules if (string.IsNullOrWhiteSpace(question)) return; await e.Channel.SendMessage( - $":question: **Question:{question}**\n:crystal_ball: **8Ball Answers:**{_8BallAnswers[_r.Next(0, _8BallAnswers.Length)]}"); + $":question: **Question**: `{question}` \n:crystal_ball: **8Ball Answers**: `{_8BallAnswers[_r.Next(0, _8BallAnswers.Length)]}`"); }); cgb.CreateCommand(">")