diff options
author | Robert Adams | 2014-02-15 18:49:40 -0800 |
---|---|---|
committer | Robert Adams | 2014-02-15 18:49:40 -0800 |
commit | fc9930e420d4b8f9125754b8f0ee7d2c53eec592 (patch) | |
tree | 02d19d341d5cb1410c82c72220440c272e0fea8c /OpenSim/Region/CoreModules/Hypergrid | |
parent | Fix displacement and location operations on legacy trees and grass in (diff) | |
download | opensim-SC_OLD-fc9930e420d4b8f9125754b8f0ee7d2c53eec592.zip opensim-SC_OLD-fc9930e420d4b8f9125754b8f0ee7d2c53eec592.tar.gz opensim-SC_OLD-fc9930e420d4b8f9125754b8f0ee7d2c53eec592.tar.bz2 opensim-SC_OLD-fc9930e420d4b8f9125754b8f0ee7d2c53eec592.tar.xz |
Repair check for if in region position (I mean || is kinda like &&).
Diffstat (limited to 'OpenSim/Region/CoreModules/Hypergrid')
-rw-r--r-- | OpenSim/Region/CoreModules/Hypergrid/HGWorldMapModule.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/OpenSim/Region/CoreModules/Hypergrid/HGWorldMapModule.cs b/OpenSim/Region/CoreModules/Hypergrid/HGWorldMapModule.cs index 5111deb..8a649ab 100644 --- a/OpenSim/Region/CoreModules/Hypergrid/HGWorldMapModule.cs +++ b/OpenSim/Region/CoreModules/Hypergrid/HGWorldMapModule.cs | |||
@@ -126,7 +126,7 @@ namespace OpenSim.Region.CoreModules.Hypergrid | |||
126 | foreach (MapBlockData b in mapBlocks) | 126 | foreach (MapBlockData b in mapBlocks) |
127 | { | 127 | { |
128 | b.Name = string.Empty; | 128 | b.Name = string.Empty; |
129 | // Set 'simulator is offline'. We need this because the viewer ignores SimAccess.Unknown (255) | 129 | // Set 'simulator is offline'. We need this because the viewer ignores SimAccess.Unknown (255) |
130 | b.Access = (byte)SimAccess.Down; | 130 | b.Access = (byte)SimAccess.Down; |
131 | } | 131 | } |
132 | 132 | ||