Update svn properties. Formatting cleanup.

0.6.0-stable
Jeff Ames 2008-06-09 08:46:33 +00:00
parent 0d07cf9ddd
commit dfb63b5623
6 changed files with 166 additions and 164 deletions

View File

@ -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
/// ///

View File

@ -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();
} }
} }