aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/ScriptEngine/Shared/Api
diff options
context:
space:
mode:
authorMelanie Thielker2008-11-17 17:59:15 +0000
committerMelanie Thielker2008-11-17 17:59:15 +0000
commit30b626024caf67837ef4d927165a619f368ddbf5 (patch)
treef91fe6e08682b9f2411069e99c99f1e66e0a29fd /OpenSim/Region/ScriptEngine/Shared/Api
parent* refactor: move user set permissions parsing code into a separate method rea... (diff)
downloadopensim-SC_OLD-30b626024caf67837ef4d927165a619f368ddbf5.zip
opensim-SC_OLD-30b626024caf67837ef4d927165a619f368ddbf5.tar.gz
opensim-SC_OLD-30b626024caf67837ef4d927165a619f368ddbf5.tar.bz2
opensim-SC_OLD-30b626024caf67837ef4d927165a619f368ddbf5.tar.xz
Fix the PAY_HIDE and PAY_DEFAULT constants to be LSLIntegers and get
accepted in the quick buttons list
Diffstat (limited to 'OpenSim/Region/ScriptEngine/Shared/Api')
-rw-r--r--OpenSim/Region/ScriptEngine/Shared/Api/Runtime/LSL_Constants.cs4
1 files changed, 2 insertions, 2 deletions
diff --git a/OpenSim/Region/ScriptEngine/Shared/Api/Runtime/LSL_Constants.cs b/OpenSim/Region/ScriptEngine/Shared/Api/Runtime/LSL_Constants.cs
index c3d3270..e087ea2 100644
--- a/OpenSim/Region/ScriptEngine/Shared/Api/Runtime/LSL_Constants.cs
+++ b/OpenSim/Region/ScriptEngine/Shared/Api/Runtime/LSL_Constants.cs
@@ -403,8 +403,8 @@ namespace OpenSim.Region.ScriptEngine.Shared.ScriptBase
403 public const int REGION_FLAG_ALLOW_DIRECT_TELEPORT = 0x100000; // region allows direct teleports 403 public const int REGION_FLAG_ALLOW_DIRECT_TELEPORT = 0x100000; // region allows direct teleports
404 public const int REGION_FLAG_RESTRICT_PUSHOBJECT = 0x400000; // region restricts llPushObject 404 public const int REGION_FLAG_RESTRICT_PUSHOBJECT = 0x400000; // region restricts llPushObject
405 405
406 public const int PAY_HIDE = -1; 406 public static readonly LSLInteger PAY_HIDE = new LSLInteger(-1);
407 public const int PAY_DEFAULT = -2; 407 public static readonly LSLInteger PAY_DEFAULT = new LSLInteger(-2);
408 408
409 public const string NULL_KEY = "00000000-0000-0000-0000-000000000000"; 409 public const string NULL_KEY = "00000000-0000-0000-0000-000000000000";
410 public const string EOF = "\n\n\n"; 410 public const string EOF = "\n\n\n";