From 4a28e1baff615884a17e26ea2f0b9258c4374c4a Mon Sep 17 00:00:00 2001 From: Master Kwoth Date: Sun, 31 Jan 2016 20:49:23 +0100 Subject: [PATCH] help and greet were commented out >.> --- NadekoBot/Classes/NadekoStats.cs | 2 +- NadekoBot/Modules/Administration.cs | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/NadekoBot/Classes/NadekoStats.cs b/NadekoBot/Classes/NadekoStats.cs index cc035cd0..efe39159 100644 --- a/NadekoBot/Classes/NadekoStats.cs +++ b/NadekoBot/Classes/NadekoStats.cs @@ -12,7 +12,7 @@ namespace NadekoBot { public class NadekoStats { - public string BotVersion = "0.8-beta3"; + public string BotVersion = "0.8-beta4.2"; 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 436181ec..e1f01d3f 100644 --- a/NadekoBot/Modules/Administration.cs +++ b/NadekoBot/Modules/Administration.cs @@ -13,8 +13,8 @@ using System.IO; namespace NadekoBot.Modules { class Administration : DiscordModule { public Administration() : base() { - // commands.Add(new HelpCommand()); - // commands.Add(new ServerGreetCommand()); + commands.Add(new HelpCommand()); + commands.Add(new ServerGreetCommand()); } public override void Install(ModuleManager manager) {