De-tabify source.
parent
0b09966c7e
commit
0ea48cf786
|
@ -198,7 +198,6 @@ namespace OpenSim.Data.MSSQL
|
|||
while (reader.Read())
|
||||
items.Add(readInventoryFolder(reader));
|
||||
|
||||
|
||||
reader.Close();
|
||||
result.Dispose();
|
||||
|
||||
|
|
|
@ -186,8 +186,6 @@ namespace OpenSim.Region.Environment.Scenes
|
|||
string.Format("[SCENE OBJECT GROUP]: Object {0} has no root part.", m_uuid));
|
||||
}
|
||||
|
||||
|
||||
|
||||
return m_rootPart.GroupPosition;
|
||||
}
|
||||
set
|
||||
|
@ -198,7 +196,6 @@ namespace OpenSim.Region.Environment.Scenes
|
|||
m_scene.CrossPrimGroupIntoNewRegion(val, this);
|
||||
}
|
||||
|
||||
|
||||
lock (m_parts)
|
||||
{
|
||||
foreach (SceneObjectPart part in m_parts.Values)
|
||||
|
|
|
@ -2719,7 +2719,6 @@ namespace OpenSim.Region.Environment.Scenes
|
|||
}
|
||||
public void PhysicsCollision(EventArgs e)
|
||||
{
|
||||
|
||||
return;
|
||||
|
||||
//
|
||||
|
@ -2733,7 +2732,6 @@ namespace OpenSim.Region.Environment.Scenes
|
|||
//{
|
||||
// m_log.Debug("[OBJECT]: Collided with:" + localid.ToString() + " at depth of: " + collissionswith[localid].ToString());
|
||||
//}
|
||||
|
||||
}
|
||||
|
||||
public void SetDieAtEdge(bool p)
|
||||
|
@ -2755,5 +2753,4 @@ namespace OpenSim.Region.Environment.Scenes
|
|||
return m_parentGroup.RootPart.DIE_AT_EDGE;
|
||||
}
|
||||
}
|
||||
|
||||
}
|
||||
|
|
|
@ -2542,11 +2542,18 @@ namespace OpenSim.Region.ScriptEngine.Common
|
|||
// so get the state one step at a time.
|
||||
|
||||
if ((item = ScriptByName(name)) != LLUUID.Zero)
|
||||
{
|
||||
if ((sm = m_ScriptEngine.m_ScriptManager) != null)
|
||||
{
|
||||
if (sm.Scripts.ContainsKey(m_localID))
|
||||
{
|
||||
if ((script = sm.GetScript(m_localID, item)) != null)
|
||||
{
|
||||
script.Exec.Running = (run==0) ? false : true;
|
||||
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
// Required by SL
|
||||
|
||||
|
@ -4367,9 +4374,15 @@ namespace OpenSim.Region.ScriptEngine.Common
|
|||
// so get the state one step at a time.
|
||||
|
||||
if ((item = ScriptByName(name)) != LLUUID.Zero)
|
||||
{
|
||||
if ((sm = m_ScriptEngine.m_ScriptManager) != null)
|
||||
{
|
||||
if ((script = sm.GetScript(m_localID, item)) != null)
|
||||
{
|
||||
return script.Exec.Running?1:0;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
// Required by SL
|
||||
|
||||
|
|
Loading…
Reference in New Issue