diff options
author | Melanie Thielker | 2008-11-17 04:34:19 +0000 |
---|---|---|
committer | Melanie Thielker | 2008-11-17 04:34:19 +0000 |
commit | 08b1e1a1f6aff05722ef7180e4b7790bc66558f2 (patch) | |
tree | 1de8801fa4cda7013454a67c5d912b817eb1770c /OpenSim/Region/ScriptEngine | |
parent | Change the semantics of the Allow_* os function control. Omitting a function (diff) | |
download | opensim-SC_OLD-08b1e1a1f6aff05722ef7180e4b7790bc66558f2.zip opensim-SC_OLD-08b1e1a1f6aff05722ef7180e4b7790bc66558f2.tar.gz opensim-SC_OLD-08b1e1a1f6aff05722ef7180e4b7790bc66558f2.tar.bz2 opensim-SC_OLD-08b1e1a1f6aff05722ef7180e4b7790bc66558f2.tar.xz |
Fix previous build break
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 f010f7d..cfe5c48 100644 --- a/OpenSim/Region/ScriptEngine/Shared/Api/Implementation/OSSL_Api.cs +++ b/OpenSim/Region/ScriptEngine/Shared/Api/Implementation/OSSL_Api.cs | |||
@@ -219,7 +219,7 @@ namespace OpenSim.Region.ScriptEngine.Shared.Api | |||
219 | 219 | ||
220 | if (UUID.TryParse(current, out uuid)) | 220 | if (UUID.TryParse(current, out uuid)) |
221 | { | 221 | { |
222 | if (uuid != uuid.Zero) | 222 | if (uuid != UUID.Zero) |
223 | m_FunctionPerms[function].Add(uuid); | 223 | m_FunctionPerms[function].Add(uuid); |
224 | } | 224 | } |
225 | } | 225 | } |