diff options
author | Melanie Thielker | 2008-11-29 13:17:21 +0000 |
---|---|---|
committer | Melanie Thielker | 2008-11-29 13:17:21 +0000 |
commit | 1b3a3ffc7781a468f40841ee291d3f1e0fe22957 (patch) | |
tree | 3539571d9da669ed83ce0b1e7c0cc70b2dd12bd9 /OpenSim/Region/Environment/Modules/World | |
parent | Add the lifetime management back into the LSL_Api, since that will also (diff) | |
download | opensim-SC_OLD-1b3a3ffc7781a468f40841ee291d3f1e0fe22957.zip opensim-SC_OLD-1b3a3ffc7781a468f40841ee291d3f1e0fe22957.tar.gz opensim-SC_OLD-1b3a3ffc7781a468f40841ee291d3f1e0fe22957.tar.bz2 opensim-SC_OLD-1b3a3ffc7781a468f40841ee291d3f1e0fe22957.tar.xz |
Finally make attachments stay put. Randomize local ID generation to
prevent adjacent sims from using identical Local IDs for the attachment
Thanks to Mana Janus (Hippo Viewer) for providing the crucial bit of
information, namely that, due to a bug in the viewer, adjacent sims can't
use the same local ids.
Diffstat (limited to '')
-rw-r--r-- | OpenSim/Region/Environment/Modules/World/Land/LandManagementModule.cs | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/OpenSim/Region/Environment/Modules/World/Land/LandManagementModule.cs b/OpenSim/Region/Environment/Modules/World/Land/LandManagementModule.cs index 68aee86..0c4e6db 100644 --- a/OpenSim/Region/Environment/Modules/World/Land/LandManagementModule.cs +++ b/OpenSim/Region/Environment/Modules/World/Land/LandManagementModule.cs | |||
@@ -556,7 +556,12 @@ namespace OpenSim.Region.Environment.Modules.World.Land | |||
556 | } | 556 | } |
557 | lock (m_landList) | 557 | lock (m_landList) |
558 | { | 558 | { |
559 | return m_landList[m_landIDList[x, y]]; | 559 | // Corner case. If an autoreturn happens during sim startup |
560 | // we will come here with the list uninitialized | ||
561 | // | ||
562 | if (m_landList.ContainsKey(m_landIDList[x, y])) | ||
563 | return m_landList[m_landIDList[x, y]]; | ||
564 | return null; | ||
560 | } | 565 | } |
561 | } | 566 | } |
562 | 567 | ||