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