Suppress error messages about scripts not foind if they're in fact disabled
parent
a0a25bb8ca
commit
071edaff49
|
@ -422,6 +422,9 @@ namespace OpenSim.Region.Framework.Scenes
|
|||
|
||||
public void ResumeScripts()
|
||||
{
|
||||
if (m_scene.RegionInfo.RegionSettings.DisableScripts)
|
||||
return;
|
||||
|
||||
foreach (SceneObjectPart part in m_parts.Values)
|
||||
{
|
||||
part.Inventory.ResumeScripts();
|
||||
|
|
Loading…
Reference in New Issue