Update svn properties. Formatting cleanup.
parent
0d07cf9ddd
commit
dfb63b5623
|
@ -721,6 +721,7 @@ namespace OpenSim
|
||||||
{
|
{
|
||||||
RegisterConsolePluginCommand(new ConsolePluginCommand(cmd, deligate, help));
|
RegisterConsolePluginCommand(new ConsolePluginCommand(cmd, deligate, help));
|
||||||
}
|
}
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Registers a new console plugin command
|
/// Registers a new console plugin command
|
||||||
/// </summary>
|
/// </summary>
|
||||||
|
@ -729,8 +730,8 @@ namespace OpenSim
|
||||||
m_PluginCommandInfos.Add(pluginCommand);
|
m_PluginCommandInfos.Add(pluginCommand);
|
||||||
}
|
}
|
||||||
#endregion
|
#endregion
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Holder object for a new console plugin command
|
/// Holder object for a new console plugin command
|
||||||
///
|
///
|
||||||
|
|
|
@ -174,9 +174,10 @@ namespace OpenSim.Region.Environment.Scenes
|
||||||
|
|
||||||
foreach (EntityBase entity in moveEntities)
|
foreach (EntityBase entity in moveEntities)
|
||||||
{
|
{
|
||||||
if(entity != null)entity.UpdateMovement();
|
|
||||||
//cfk. This throws occaisional exceptions on a heavily used region
|
//cfk. This throws occaisional exceptions on a heavily used region
|
||||||
//and I added this null check to try to preclude the exception.
|
//and I added this null check to try to preclude the exception.
|
||||||
|
if (entity != null)
|
||||||
|
entity.UpdateMovement();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue