diff options
author | Diva Canto | 2009-09-28 17:35:26 -0700 |
---|---|---|
committer | Diva Canto | 2009-09-28 17:35:26 -0700 |
commit | 51d9f7ebd4286709e75f6fcceff6fb75a4a83c46 (patch) | |
tree | 032929778f7dc07b560c75da262f285476a44450 /OpenSim/Data/Null | |
parent | Improved the Local grid connector to fetch data from the DB when it doesn't f... (diff) | |
parent | Convert DOS newlines to Unix newlines. (diff) | |
download | opensim-SC_OLD-51d9f7ebd4286709e75f6fcceff6fb75a4a83c46.zip opensim-SC_OLD-51d9f7ebd4286709e75f6fcceff6fb75a4a83c46.tar.gz opensim-SC_OLD-51d9f7ebd4286709e75f6fcceff6fb75a4a83c46.tar.bz2 opensim-SC_OLD-51d9f7ebd4286709e75f6fcceff6fb75a4a83c46.tar.xz |
Merge branch 'master' of ssh://diva@opensimulator.org/var/git/opensim
Diffstat (limited to 'OpenSim/Data/Null')
-rw-r--r-- | OpenSim/Data/Null/NullRegionData.cs | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/OpenSim/Data/Null/NullRegionData.cs b/OpenSim/Data/Null/NullRegionData.cs index 218fcd0..e8263ea 100644 --- a/OpenSim/Data/Null/NullRegionData.cs +++ b/OpenSim/Data/Null/NullRegionData.cs | |||
@@ -47,7 +47,7 @@ namespace OpenSim.Data.Null | |||
47 | { | 47 | { |
48 | List<RegionData> ret = new List<RegionData>(); | 48 | List<RegionData> ret = new List<RegionData>(); |
49 | 49 | ||
50 | foreach(RegionData r in m_regionData.Values) | 50 | foreach (RegionData r in m_regionData.Values) |
51 | { | 51 | { |
52 | if (regionName.Contains("%")) | 52 | if (regionName.Contains("%")) |
53 | { | 53 | { |
@@ -71,7 +71,7 @@ namespace OpenSim.Data.Null | |||
71 | { | 71 | { |
72 | List<RegionData> ret = new List<RegionData>(); | 72 | List<RegionData> ret = new List<RegionData>(); |
73 | 73 | ||
74 | foreach(RegionData r in m_regionData.Values) | 74 | foreach (RegionData r in m_regionData.Values) |
75 | { | 75 | { |
76 | if (r.posX == posX && r.posY == posY) | 76 | if (r.posX == posX && r.posY == posY) |
77 | ret.Add(r); | 77 | ret.Add(r); |
@@ -95,7 +95,7 @@ namespace OpenSim.Data.Null | |||
95 | { | 95 | { |
96 | List<RegionData> ret = new List<RegionData>(); | 96 | List<RegionData> ret = new List<RegionData>(); |
97 | 97 | ||
98 | foreach(RegionData r in m_regionData.Values) | 98 | foreach (RegionData r in m_regionData.Values) |
99 | { | 99 | { |
100 | if (r.posX >= startX && r.posX <= endX && r.posY >= startY && r.posY <= endY) | 100 | if (r.posX >= startX && r.posX <= endX && r.posY >= startY && r.posY <= endY) |
101 | ret.Add(r); | 101 | ret.Add(r); |