From fc999954154ce2d6f9340552889a0e35ca2c53b0 Mon Sep 17 00:00:00 2001 From: Zontreck Date: Sun, 21 Jun 2020 23:37:51 -0700 Subject: [PATCH] Deprecate lockfile --- Assembly/ASMInfo.cs | 4 ++-- Program.cs | 3 --- 2 files changed, 2 insertions(+), 5 deletions(-) diff --git a/Assembly/ASMInfo.cs b/Assembly/ASMInfo.cs index b8daf74..108c8b4 100644 --- a/Assembly/ASMInfo.cs +++ b/Assembly/ASMInfo.cs @@ -6,7 +6,7 @@ using System.Reflection; [assembly: AssemblyCompany("ZNI")] [assembly: AssemblyAlgorithmId(System.Configuration.Assemblies.AssemblyHashAlgorithm.MD5)] [assembly: AssemblyCopyright("© 2020 Tara Piccari")] -[assembly: AssemblyFileVersion("5.2.017")] +[assembly: AssemblyFileVersion("5.2.018")] [assembly: AssemblyDescription("Second Life Bot - BotCore5")] @@ -15,7 +15,7 @@ namespace Bot.Assemble public class ASMInfo { public static string BotName = "ZBotCore"; - public static string BotVer = "5.2.017"; + public static string BotVer = "5.2.018"; public static string GitPassword { get diff --git a/Program.cs b/Program.cs index 02b4d3a..9e87637 100644 --- a/Program.cs +++ b/Program.cs @@ -47,9 +47,6 @@ namespace Bot public static unsafe void Main(string[] args) { - if (File.Exists("Bot.lockfile")) Environment.Exit(0); - - File.WriteAllText("Bot.lockfile", "1"); Console.WriteLine("Setting up Main Configuration"); Log = new Logger("BotCore5"); BotSession.Instance.Logger = Log;