Remove old converter, closes #153

Decided to remove it faster
This commit is contained in:
JustArchi
2016-03-26 22:23:35 +01:00
parent c163e5e2f3
commit 761d73eb90
4 changed files with 5 additions and 193 deletions

View File

@@ -66,6 +66,10 @@ namespace ArchiSteamFarm {
private string FilePath;
internal static BotDatabase Load(string filePath) {
if (string.IsNullOrEmpty(filePath)) {
return null;
}
if (!File.Exists(filePath)) {
return new BotDatabase(filePath);
}