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 XEngine
0.7.2-post-fixes
Justin Clark-Casey (justincc) 2011-10-27 03:01:27 +01:00
parent b5b2541d1a
commit a16c9206b4
1 changed files with 4 additions and 1 deletions

View File

@ -374,7 +374,10 @@ namespace OpenSim.Region.ScriptEngine.XEngine
IScriptInstance instance = GetInstance(itemId);
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;
}
else