diff options
author | Melanie Thielker | 2014-10-30 01:29:03 +0100 |
---|---|---|
committer | Melanie Thielker | 2014-10-30 01:29:03 +0100 |
commit | 3afd64f2f77a1460bb03ee1d4a43fea67e8e5005 (patch) | |
tree | 99c9dec9af3054890d572651df31347ca703bac5 /OpenSim/Region/Framework/Scenes/Scene.Inventory.cs | |
parent | Add an admin message to refesh a region's map tile. Will be used to periodically (diff) | |
download | opensim-SC-3afd64f2f77a1460bb03ee1d4a43fea67e8e5005.zip opensim-SC-3afd64f2f77a1460bb03ee1d4a43fea67e8e5005.tar.gz opensim-SC-3afd64f2f77a1460bb03ee1d4a43fea67e8e5005.tar.bz2 opensim-SC-3afd64f2f77a1460bb03ee1d4a43fea67e8e5005.tar.xz |
Fix a script load issue
Diffstat (limited to '')
-rw-r--r-- | OpenSim/Region/Framework/Scenes/Scene.Inventory.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/OpenSim/Region/Framework/Scenes/Scene.Inventory.cs b/OpenSim/Region/Framework/Scenes/Scene.Inventory.cs index d2e41f8..d70aa45 100644 --- a/OpenSim/Region/Framework/Scenes/Scene.Inventory.cs +++ b/OpenSim/Region/Framework/Scenes/Scene.Inventory.cs | |||
@@ -1946,7 +1946,7 @@ namespace OpenSim.Region.Framework.Scenes | |||
1946 | return; | 1946 | return; |
1947 | } | 1947 | } |
1948 | 1948 | ||
1949 | if (destPart.ScriptAccessPin != pin) | 1949 | if (destPart.ScriptAccessPin == 0 || destPart.ScriptAccessPin != pin) |
1950 | { | 1950 | { |
1951 | m_log.WarnFormat( | 1951 | m_log.WarnFormat( |
1952 | "[PRIM INVENTORY]: " + | 1952 | "[PRIM INVENTORY]: " + |