From 16e7ec834d1551ad027a448e9941f9f148833b0a Mon Sep 17 00:00:00 2001 From: Zontreck Date: Sat, 20 Jun 2020 08:09:25 -0700 Subject: [PATCH] Fix a infinite loop --- Assembly/ASMInfo.cs | 4 ++-- Program.cs | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/Assembly/ASMInfo.cs b/Assembly/ASMInfo.cs index ec6f8fd..763cde0 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.1.962")] +[assembly: AssemblyFileVersion("5.1.963")] [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.1.962"; + public static string BotVer = "5.1.963"; public static string GitPassword { get diff --git a/Program.cs b/Program.cs index d3ec603..475b281 100644 --- a/Program.cs +++ b/Program.cs @@ -355,7 +355,7 @@ namespace Bot SM.Write("Main", conf); } - if (File.Exists(conf.MainProgramDLL) == false) + if (File.Exists(conf.MainProgramDLL) == false && startupSeq) { Log.info(true, "MainProgram Library: " + conf.MainProgramDLL + " does not exist");