diff options
author | UbitUmarov | 2018-11-25 23:10:44 +0000 |
---|---|---|
committer | UbitUmarov | 2018-11-25 23:10:44 +0000 |
commit | be2c0aa5524d67064d038343ccef5b125111fa76 (patch) | |
tree | a138c3ee3d3be981da96c0634d495c5982bc0f9b /OpenSim/Region/ScriptEngine/Shared | |
parent | remove a dev only conditional on lludp handlers; change parcel lists updates ... (diff) | |
download | opensim-SC-be2c0aa5524d67064d038343ccef5b125111fa76.zip opensim-SC-be2c0aa5524d67064d038343ccef5b125111fa76.tar.gz opensim-SC-be2c0aa5524d67064d038343ccef5b125111fa76.tar.bz2 opensim-SC-be2c0aa5524d67064d038343ccef5b125111fa76.tar.xz |
fix ossl severe error
Diffstat (limited to 'OpenSim/Region/ScriptEngine/Shared')
-rw-r--r-- | OpenSim/Region/ScriptEngine/Shared/Api/Implementation/OSSL_Api.cs | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/OpenSim/Region/ScriptEngine/Shared/Api/Implementation/OSSL_Api.cs b/OpenSim/Region/ScriptEngine/Shared/Api/Implementation/OSSL_Api.cs index 7b56b90..91a57b0 100644 --- a/OpenSim/Region/ScriptEngine/Shared/Api/Implementation/OSSL_Api.cs +++ b/OpenSim/Region/ScriptEngine/Shared/Api/Implementation/OSSL_Api.cs | |||
@@ -141,7 +141,7 @@ namespace OpenSim.Region.ScriptEngine.Shared.Api | |||
141 | internal ThreatLevel m_MaxThreatLevel = ThreatLevel.VeryLow; | 141 | internal ThreatLevel m_MaxThreatLevel = ThreatLevel.VeryLow; |
142 | internal float m_ScriptDelayFactor = 1.0f; | 142 | internal float m_ScriptDelayFactor = 1.0f; |
143 | internal float m_ScriptDistanceFactor = 1.0f; | 143 | internal float m_ScriptDistanceFactor = 1.0f; |
144 | internal bool m_debuggerSafe = true; | 144 | internal bool m_debuggerSafe = false; |
145 | internal Dictionary<string, FunctionPerms > m_FunctionPerms = new Dictionary<string, FunctionPerms >(); | 145 | internal Dictionary<string, FunctionPerms > m_FunctionPerms = new Dictionary<string, FunctionPerms >(); |
146 | protected IUrlModule m_UrlModule = null; | 146 | protected IUrlModule m_UrlModule = null; |
147 | protected ISoundModule m_SoundModule = null; | 147 | protected ISoundModule m_SoundModule = null; |
@@ -1683,7 +1683,7 @@ namespace OpenSim.Region.ScriptEngine.Shared.Api | |||
1683 | case ScriptBaseClass.PARCEL_DETAILS_OWNER: | 1683 | case ScriptBaseClass.PARCEL_DETAILS_OWNER: |
1684 | if(es != null && !es.IsEstateManagerOrOwner(m_host.OwnerID)) | 1684 | if(es != null && !es.IsEstateManagerOrOwner(m_host.OwnerID)) |
1685 | { | 1685 | { |
1686 | OSSLError("script owner does not have permission to modify the parcel owner"); | 1686 | OSSLShoutError("script owner does not have permission to modify the parcel owner"); |
1687 | } | 1687 | } |
1688 | else | 1688 | else |
1689 | { | 1689 | { |
@@ -1718,7 +1718,7 @@ namespace OpenSim.Region.ScriptEngine.Shared.Api | |||
1718 | if (groupsModule != null) | 1718 | if (groupsModule != null) |
1719 | member = groupsModule.GetMembershipData(uuid, newLand.OwnerID); | 1719 | member = groupsModule.GetMembershipData(uuid, newLand.OwnerID); |
1720 | if (member == null) | 1720 | if (member == null) |
1721 | OSSLError(string.Format("land owner is not member of the new group for parcel")); | 1721 | OSSLShoutError(string.Format("land owner is not member of the new group for parcel")); |
1722 | else | 1722 | else |
1723 | { | 1723 | { |
1724 | changed = true; | 1724 | changed = true; |
@@ -1730,14 +1730,14 @@ namespace OpenSim.Region.ScriptEngine.Shared.Api | |||
1730 | } | 1730 | } |
1731 | else | 1731 | else |
1732 | { | 1732 | { |
1733 | OSSLError("script owner does not have permission to modify the parcel group"); | 1733 | OSSLShoutError("script owner does not have permission to modify the parcel group"); |
1734 | } | 1734 | } |
1735 | break; | 1735 | break; |
1736 | 1736 | ||
1737 | case ScriptBaseClass.PARCEL_DETAILS_CLAIMDATE: | 1737 | case ScriptBaseClass.PARCEL_DETAILS_CLAIMDATE: |
1738 | if(es != null && !es.IsEstateManagerOrOwner(m_host.OwnerID)) | 1738 | if(es != null && !es.IsEstateManagerOrOwner(m_host.OwnerID)) |
1739 | { | 1739 | { |
1740 | OSSLError("script owner does not have permission to modify the parcel CLAIM DATE"); | 1740 | OSSLShoutError("script owner does not have permission to modify the parcel CLAIM DATE"); |
1741 | } | 1741 | } |
1742 | else | 1742 | else |
1743 | { | 1743 | { |