diff options
Diffstat (limited to 'OpenSim/Region/ScriptEngine')
-rw-r--r-- | OpenSim/Region/ScriptEngine/Shared/Api/Implementation/OSSL_Api.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/OpenSim/Region/ScriptEngine/Shared/Api/Implementation/OSSL_Api.cs b/OpenSim/Region/ScriptEngine/Shared/Api/Implementation/OSSL_Api.cs index 4da0076..5cc58e7 100644 --- a/OpenSim/Region/ScriptEngine/Shared/Api/Implementation/OSSL_Api.cs +++ b/OpenSim/Region/ScriptEngine/Shared/Api/Implementation/OSSL_Api.cs | |||
@@ -190,7 +190,7 @@ namespace OpenSim.Region.ScriptEngine.Shared.Api | |||
190 | if (bool.TryParse(perm, out allowed)) | 190 | if (bool.TryParse(perm, out allowed)) |
191 | { | 191 | { |
192 | // Boolean given | 192 | // Boolean given |
193 | if(allowed) | 193 | if (allowed) |
194 | m_FunctionPerms[function] = null; // a null value is all | 194 | m_FunctionPerms[function] = null; // a null value is all |
195 | else | 195 | else |
196 | m_FunctionPerms[function] = new List<UUID>(); // Empty list = none | 196 | m_FunctionPerms[function] = new List<UUID>(); // Empty list = none |