diff --git a/Assembly/ASMInfo.cs b/Assembly/ASMInfo.cs index fdbc1af..049dba8 100644 --- a/Assembly/ASMInfo.cs +++ b/Assembly/ASMInfo.cs @@ -7,7 +7,7 @@ using LibZNI; [assembly: AssemblyCompany("ZNI")] [assembly: AssemblyAlgorithmId(System.Configuration.Assemblies.AssemblyHashAlgorithm.MD5)] [assembly: AssemblyCopyright("(C) 2020 Tara Piccari")] -[assembly: AssemblyFileVersion("5.0.5.1249")] +[assembly: AssemblyFileVersion("5.0.5.1250")] [assembly: AssemblyDescription("Second Life Bot - BotCore5")] [assembly: AutoUpdater("/job/ZBotCore/job/BotCore5", "module.tar")] @@ -16,7 +16,7 @@ namespace Bot.Assemble public class ASMInfo { public static string BotName = "ZBotCore"; - public static string BotVer = "5.0.5.1249"; + public static string BotVer = "5.0.5.1250"; public static string GitPassword { get diff --git a/Program.cs b/Program.cs index 916fd4e..340f0a7 100644 --- a/Program.cs +++ b/Program.cs @@ -48,6 +48,11 @@ namespace Bot public static unsafe void Main(string[] args) { File.WriteAllText("PID.lock", Process.GetCurrentProcess().Id.ToString()); + if (!Directory.Exists("BotData")) Directory.CreateDirectory("BotData"); + Directory.SetCurrentDirectory("BotData"); + + + Console.WriteLine("Setting up Main Configuration"); Log = new Logger("BotCore5"); BotSession.Instance.Logger = Log;