For now, comment out error message on new script engine console commands.
This causes false positives if a simulator has more than 1 region and the current region is 'root' since this sends the command separately to each region and each region has its own XEngine0.7.2-post-fixes
parent
b5b2541d1a
commit
a16c9206b4
|
@ -374,7 +374,10 @@ namespace OpenSim.Region.ScriptEngine.XEngine
|
||||||
IScriptInstance instance = GetInstance(itemId);
|
IScriptInstance instance = GetInstance(itemId);
|
||||||
if (instance == null)
|
if (instance == null)
|
||||||
{
|
{
|
||||||
MainConsole.Instance.OutputFormat("Error - No item found with id {0}", itemId);
|
// Commented out for now since this will cause false reports on simulators with more than
|
||||||
|
// one scene where the current command line set region is 'root' (which causes commands to
|
||||||
|
// go to both regions... (sigh)
|
||||||
|
// MainConsole.Instance.OutputFormat("Error - No item found with id {0}", itemId);
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
|
|
Loading…
Reference in New Issue