diff options
author | Jeff Ames | 2008-06-09 08:46:33 +0000 |
---|---|---|
committer | Jeff Ames | 2008-06-09 08:46:33 +0000 |
commit | dfb63b56230bdd3bfd897d499ce977ea9ee9891d (patch) | |
tree | 1d340aa26183382142d5df917388eacc3084033c /OpenSim/Region/Environment | |
parent | Mantis#1469. Thank you kindly, Mikem for a patch that addresses: (diff) | |
download | opensim-SC_OLD-dfb63b56230bdd3bfd897d499ce977ea9ee9891d.zip opensim-SC_OLD-dfb63b56230bdd3bfd897d499ce977ea9ee9891d.tar.gz opensim-SC_OLD-dfb63b56230bdd3bfd897d499ce977ea9ee9891d.tar.bz2 opensim-SC_OLD-dfb63b56230bdd3bfd897d499ce977ea9ee9891d.tar.xz |
Update svn properties. Formatting cleanup.
Diffstat (limited to 'OpenSim/Region/Environment')
-rw-r--r-- | OpenSim/Region/Environment/Scenes/InnerScene.cs | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/OpenSim/Region/Environment/Scenes/InnerScene.cs b/OpenSim/Region/Environment/Scenes/InnerScene.cs index b3663b7..d7a6d5b 100644 --- a/OpenSim/Region/Environment/Scenes/InnerScene.cs +++ b/OpenSim/Region/Environment/Scenes/InnerScene.cs | |||
@@ -174,9 +174,10 @@ namespace OpenSim.Region.Environment.Scenes | |||
174 | 174 | ||
175 | foreach (EntityBase entity in moveEntities) | 175 | foreach (EntityBase entity in moveEntities) |
176 | { | 176 | { |
177 | if(entity != null)entity.UpdateMovement(); | ||
178 | //cfk. This throws occaisional exceptions on a heavily used region | 177 | //cfk. This throws occaisional exceptions on a heavily used region |
179 | //and I added this null check to try to preclude the exception. | 178 | //and I added this null check to try to preclude the exception. |
179 | if (entity != null) | ||
180 | entity.UpdateMovement(); | ||
180 | } | 181 | } |
181 | } | 182 | } |
182 | 183 | ||