comment out some debug
This commit is contained in:
parent
9a5aea156f
commit
2345db0da0
2 changed files with 4 additions and 4 deletions
|
@ -6,7 +6,7 @@ using System.Reflection;
|
||||||
[assembly: AssemblyCompany("ZNI")]
|
[assembly: AssemblyCompany("ZNI")]
|
||||||
[assembly: AssemblyAlgorithmId(System.Configuration.Assemblies.AssemblyHashAlgorithm.MD5)]
|
[assembly: AssemblyAlgorithmId(System.Configuration.Assemblies.AssemblyHashAlgorithm.MD5)]
|
||||||
[assembly: AssemblyCopyright("© 2020 Tara Piccari")]
|
[assembly: AssemblyCopyright("© 2020 Tara Piccari")]
|
||||||
[assembly: AssemblyFileVersion("5.401")]
|
[assembly: AssemblyFileVersion("5.405")]
|
||||||
[assembly: AssemblyDescription("Second Life Bot - BotCore5")]
|
[assembly: AssemblyDescription("Second Life Bot - BotCore5")]
|
||||||
|
|
||||||
|
|
||||||
|
@ -15,7 +15,7 @@ namespace Bot.Assemble
|
||||||
public class ASMInfo
|
public class ASMInfo
|
||||||
{
|
{
|
||||||
public static string BotName = "ZBotCore";
|
public static string BotName = "ZBotCore";
|
||||||
public static double BotVer = 5.401;
|
public static double BotVer = 5.405;
|
||||||
public static string GitPassword
|
public static string GitPassword
|
||||||
{
|
{
|
||||||
get
|
get
|
||||||
|
|
|
@ -467,7 +467,7 @@ namespace Bot
|
||||||
}
|
}
|
||||||
case "load_program":
|
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;
|
string newProg = jsonObj.newProgram;
|
||||||
if (File.Exists(newProg + ".dll"))
|
if (File.Exists(newProg + ".dll"))
|
||||||
{
|
{
|
||||||
|
@ -485,7 +485,7 @@ namespace Bot
|
||||||
client.Self.IM += plugin.onIMEvent;
|
client.Self.IM += plugin.onIMEvent;
|
||||||
programCount++;
|
programCount++;
|
||||||
Log.info(true, "Plugin: " + plugin.ProgramName + " [" + Plugs.LoadedASM.FullName + "] added to g_ZPrograms");
|
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
|
plugin.LoadConfiguration(); // will throw an error if BlankBot tries to load config
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue