diff options
author | Sean Dague | 2008-05-20 16:19:35 +0000 |
---|---|---|
committer | Sean Dague | 2008-05-20 16:19:35 +0000 |
commit | 185eff8d0d588161c301d868fc31c9f0177ba945 (patch) | |
tree | b0df82b4ebd574173d62c4476adeafd5ce3e2a44 /OpenSim/Region/Environment/Scenes/InnerScene.cs | |
parent | Add copyright notices. (diff) | |
download | opensim-SC-185eff8d0d588161c301d868fc31c9f0177ba945.zip opensim-SC-185eff8d0d588161c301d868fc31c9f0177ba945.tar.gz opensim-SC-185eff8d0d588161c301d868fc31c9f0177ba945.tar.bz2 opensim-SC-185eff8d0d588161c301d868fc31c9f0177ba945.tar.xz |
From: Jeremy Bongio <jbongio@us.ibm.com>
House cleaning ...
Rather than using the variable name EntityList, the variable name
EntitieList was being used. Here's a patch to fix it.
Diffstat (limited to 'OpenSim/Region/Environment/Scenes/InnerScene.cs')
-rw-r--r-- | OpenSim/Region/Environment/Scenes/InnerScene.cs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/OpenSim/Region/Environment/Scenes/InnerScene.cs b/OpenSim/Region/Environment/Scenes/InnerScene.cs index 7a460a2..62055d8 100644 --- a/OpenSim/Region/Environment/Scenes/InnerScene.cs +++ b/OpenSim/Region/Environment/Scenes/InnerScene.cs | |||
@@ -1267,8 +1267,8 @@ namespace OpenSim.Region.Environment.Scenes | |||
1267 | 1267 | ||
1268 | Dictionary<uint, SceneObjectGroup> sceneObjects = new Dictionary<uint, SceneObjectGroup>(); | 1268 | Dictionary<uint, SceneObjectGroup> sceneObjects = new Dictionary<uint, SceneObjectGroup>(); |
1269 | 1269 | ||
1270 | List<EntityBase> EntitieList = GetEntities(); | 1270 | List<EntityBase> EntityList = GetEntities(); |
1271 | foreach (EntityBase ent in EntitieList) | 1271 | foreach (EntityBase ent in EntityList) |
1272 | { | 1272 | { |
1273 | if (ent is SceneObjectGroup) | 1273 | if (ent is SceneObjectGroup) |
1274 | { | 1274 | { |