From f37290d867fb49ecb3a7c9c316bcbe9c0d41161c Mon Sep 17 00:00:00 2001 From: Zontreck Date: Sun, 21 Jun 2020 01:12:41 -0700 Subject: [PATCH] Fix the bot --- Assembly/ASMInfo.cs | 4 ++-- WebHookServer/WebHookServer.cs | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/Assembly/ASMInfo.cs b/Assembly/ASMInfo.cs index 23c5093..7d4d8b1 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.014")] +[assembly: AssemblyFileVersion("5.2.015")] [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.014"; + public static string BotVer = "5.2.015"; public static string GitPassword { get diff --git a/WebHookServer/WebHookServer.cs b/WebHookServer/WebHookServer.cs index b84e179..883bb41 100644 --- a/WebHookServer/WebHookServer.cs +++ b/WebHookServer/WebHookServer.cs @@ -88,7 +88,7 @@ namespace Bot.WebHookServer }catch(Exception e) { - BotSession.Instance.MHE(MessageHandler.Destinations.DEST_LOCAL, UUID.Zero, "Error: Program could not escalate to Admin Privileges. WebHook engine not running"); + BotSession.Instance.MHE(MessageHandler.Destinations.DEST_LOCAL, UUID.Zero, "Error: Program could not escalate to Admin Privileges. WebHook engine not running\n\n"+e.Message+"\n"+e.StackTrace); } } }