From 7c64ccb2afe168802f9db48f647a62d228880297 Mon Sep 17 00:00:00 2001 From: blitz4694 Date: Thu, 18 Aug 2016 07:33:48 +1000 Subject: [PATCH] Fixed a spelling mistake --- NadekoBot/Modules/Administration/AdministrationModule.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/NadekoBot/Modules/Administration/AdministrationModule.cs b/NadekoBot/Modules/Administration/AdministrationModule.cs index 356f804f..24effe3a 100644 --- a/NadekoBot/Modules/Administration/AdministrationModule.cs +++ b/NadekoBot/Modules/Administration/AdministrationModule.cs @@ -72,9 +72,9 @@ namespace NadekoBot.Modules.Administration conf.AutoDeleteMessagesOnCommand = !conf.AutoDeleteMessagesOnCommand; await Classes.JSONModels.ConfigHandler.SaveConfig().ConfigureAwait(false); if (conf.AutoDeleteMessagesOnCommand) - await e.Channel.SendMessage("❗`Now automatically deleting successfull command invokations.`"); + await e.Channel.SendMessage("❗`Now automatically deleting successful command invokations.`"); else - await e.Channel.SendMessage("❗`Stopped automatic deletion of successfull command invokations.`"); + await e.Channel.SendMessage("❗`Stopped automatic deletion of successful command invokations.`"); });