Add a few changes to the command manager for not-commands to be able to check if source is a object
This commit is contained in:
parent
0c9f5ab5be
commit
36d40cb0bb
2 changed files with 3 additions and 3 deletions
|
@ -6,7 +6,7 @@ using System.Reflection;
|
|||
[assembly: AssemblyCompany("ZNI")]
|
||||
[assembly: AssemblyAlgorithmId(System.Configuration.Assemblies.AssemblyHashAlgorithm.MD5)]
|
||||
[assembly: AssemblyCopyright("(C) 2020 Tara Piccari")]
|
||||
[assembly: AssemblyFileVersion("5.0.5.1004")]
|
||||
[assembly: AssemblyFileVersion("5.0.5.1005")]
|
||||
[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.0.5.1004";
|
||||
public static string BotVer = "5.0.5.1005";
|
||||
public static string GitPassword
|
||||
{
|
||||
get
|
||||
|
|
|
@ -96,7 +96,7 @@ namespace Bot.CommandSystem
|
|||
if (request.Substring(0, 1) != "!")
|
||||
{
|
||||
// Check if active bug or feature report session. If not- return.
|
||||
nRegistry.Dispatch(request, agentKey, agentName, sourceLoc, fromID);
|
||||
nRegistry.Dispatch(request, agentKey, ((parameters.source == "obj") ? "Object" : agentName), sourceLoc, fromID);
|
||||
/*
|
||||
if (ocb.ActiveReportSessions.ContainsKey(agentKey) && ocb.ActiveReportSessions.Count > 0)
|
||||
{
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue