diff --git a/Assembly/ASMInfo.cs b/Assembly/ASMInfo.cs index 54b308a..5388c57 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.401")] +[assembly: AssemblyFileVersion("5.405")] [assembly: AssemblyDescription("Second Life Bot - BotCore5")] @@ -15,7 +15,7 @@ namespace Bot.Assemble public class ASMInfo { public static string BotName = "ZBotCore"; - public static double BotVer = 5.401; + public static double BotVer = 5.405; public static string GitPassword { get diff --git a/Program.cs b/Program.cs index e2c1b8a..e16b4c0 100644 --- a/Program.cs +++ b/Program.cs @@ -467,7 +467,7 @@ namespace Bot } case "load_program": { - msg(MessageHandler.Destinations.DEST_LOCAL, UUID.Zero, "Stand by.. loading secondary libraries"); + //msg(MessageHandler.Destinations.DEST_LOCAL, UUID.Zero, "Stand by.. loading secondary libraries"); string newProg = jsonObj.newProgram; if (File.Exists(newProg + ".dll")) { @@ -485,7 +485,7 @@ namespace Bot client.Self.IM += plugin.onIMEvent; programCount++; Log.info(true, "Plugin: " + plugin.ProgramName + " [" + Plugs.LoadedASM.FullName + "] added to g_ZPrograms"); - if (File.Exists(plugin.ProgramName + ".bdf")) + if (File.Exists(plugin.ProgramName + ".json")) plugin.LoadConfiguration(); // will throw an error if BlankBot tries to load config }