Normalize AutoRespond bot

Move FromFile method from bots to ChatBot class
Rename file and class, removing space and underscore.
This commit is contained in:
ORelio 2015-05-26 19:16:50 +02:00
parent b07091e3dd
commit 53156bdf98
5 changed files with 33 additions and 50 deletions

View file

@ -106,7 +106,7 @@ namespace MinecraftClient
if (Settings.AutoRelog_Enabled) { BotLoad(new ChatBots.AutoRelog(Settings.AutoRelog_Delay, Settings.AutoRelog_Retries)); }
if (Settings.ScriptScheduler_Enabled) { BotLoad(new ChatBots.ScriptScheduler(Settings.expandVars(Settings.ScriptScheduler_TasksFile))); }
if (Settings.RemoteCtrl_Enabled) { BotLoad(new ChatBots.RemoteControl()); }
if (Settings.Respond_Enabled) { BotLoad(new ChatBots.Auto_Respond()); }
if (Settings.Respond_Enabled) { BotLoad(new ChatBots.AutoRespond()); }
}
try