diff options
author | Melanie | 2012-08-24 23:53:14 +0200 |
---|---|---|
committer | Melanie | 2012-08-24 23:53:14 +0200 |
commit | f1a71f544b02893c064b98368bd640fa2492a170 (patch) | |
tree | 2100bd63e85a37948dfc74a07f1d70a82a665048 /OpenSim/Region | |
parent | Remove debug spam (diff) | |
parent | let setLinkPrimParams terminate even if there are no more parts. (diff) | |
download | opensim-SC_OLD-f1a71f544b02893c064b98368bd640fa2492a170.zip opensim-SC_OLD-f1a71f544b02893c064b98368bd640fa2492a170.tar.gz opensim-SC_OLD-f1a71f544b02893c064b98368bd640fa2492a170.tar.bz2 opensim-SC_OLD-f1a71f544b02893c064b98368bd640fa2492a170.tar.xz |
Merge branch 'ubitwork' into avination
Diffstat (limited to 'OpenSim/Region')
-rw-r--r-- | OpenSim/Region/CoreModules/ServiceConnectorsOut/Authentication/LocalAuthenticationServiceConnector.cs | 1 | ||||
-rw-r--r-- | OpenSim/Region/ScriptEngine/Shared/Api/Implementation/LSL_Api.cs | 5 |
2 files changed, 4 insertions, 2 deletions
diff --git a/OpenSim/Region/CoreModules/ServiceConnectorsOut/Authentication/LocalAuthenticationServiceConnector.cs b/OpenSim/Region/CoreModules/ServiceConnectorsOut/Authentication/LocalAuthenticationServiceConnector.cs index 25ee4c6..d809ac2 100644 --- a/OpenSim/Region/CoreModules/ServiceConnectorsOut/Authentication/LocalAuthenticationServiceConnector.cs +++ b/OpenSim/Region/CoreModules/ServiceConnectorsOut/Authentication/LocalAuthenticationServiceConnector.cs | |||
@@ -140,6 +140,7 @@ namespace OpenSim.Region.CoreModules.ServiceConnectorsOut.Authentication | |||
140 | public string Authenticate(UUID principalID, string password, int lifetime, out UUID realID) | 140 | public string Authenticate(UUID principalID, string password, int lifetime, out UUID realID) |
141 | { | 141 | { |
142 | // Not implemented at the regions | 142 | // Not implemented at the regions |
143 | realID = UUID.Zero; | ||
143 | return string.Empty; | 144 | return string.Empty; |
144 | } | 145 | } |
145 | 146 | ||
diff --git a/OpenSim/Region/ScriptEngine/Shared/Api/Implementation/LSL_Api.cs b/OpenSim/Region/ScriptEngine/Shared/Api/Implementation/LSL_Api.cs index 3e1b43e..d8ef772 100644 --- a/OpenSim/Region/ScriptEngine/Shared/Api/Implementation/LSL_Api.cs +++ b/OpenSim/Region/ScriptEngine/Shared/Api/Implementation/LSL_Api.cs | |||
@@ -7785,10 +7785,10 @@ namespace OpenSim.Region.ScriptEngine.Shared.Api | |||
7785 | remaining = SetPrimParams((ScenePresence)part, rules); | 7785 | remaining = SetPrimParams((ScenePresence)part, rules); |
7786 | } | 7786 | } |
7787 | 7787 | ||
7788 | while((object)remaining != null && remaining.Length > 2) | 7788 | while ((object)remaining != null && remaining.Length > 2) |
7789 | { | 7789 | { |
7790 | linknumber = remaining.GetLSLIntegerItem(0); | 7790 | linknumber = remaining.GetLSLIntegerItem(0); |
7791 | rules = remaining.GetSublist(1,-1); | 7791 | rules = remaining.GetSublist(1, -1); |
7792 | parts.Clear(); | 7792 | parts.Clear(); |
7793 | prims = GetLinkParts(linknumber); | 7793 | prims = GetLinkParts(linknumber); |
7794 | avatars = GetLinkAvatars(linknumber); | 7794 | avatars = GetLinkAvatars(linknumber); |
@@ -7797,6 +7797,7 @@ namespace OpenSim.Region.ScriptEngine.Shared.Api | |||
7797 | foreach (ScenePresence p in avatars) | 7797 | foreach (ScenePresence p in avatars) |
7798 | parts.Add(p); | 7798 | parts.Add(p); |
7799 | 7799 | ||
7800 | remaining = null; | ||
7800 | foreach (object part in parts) | 7801 | foreach (object part in parts) |
7801 | { | 7802 | { |
7802 | if (part is SceneObjectPart) | 7803 | if (part is SceneObjectPart) |