diff options
author | UbitUmarov | 2020-01-07 14:49:56 +0000 |
---|---|---|
committer | UbitUmarov | 2020-01-07 14:51:07 +0000 |
commit | 7bdc408caca3379616a761dff3847144a6d572ce (patch) | |
tree | da75f920122458820e1d56c87175c1d92c0b0e21 /OpenSim/Region/ScriptEngine/Shared | |
parent | changes on lludp acks and resends (diff) | |
download | opensim-SC-7bdc408caca3379616a761dff3847144a6d572ce.zip opensim-SC-7bdc408caca3379616a761dff3847144a6d572ce.tar.gz opensim-SC-7bdc408caca3379616a761dff3847144a6d572ce.tar.bz2 opensim-SC-7bdc408caca3379616a761dff3847144a6d572ce.tar.xz |
change some lsl flag constants to Hexa
Diffstat (limited to 'OpenSim/Region/ScriptEngine/Shared')
-rw-r--r-- | OpenSim/Region/ScriptEngine/Shared/Api/Runtime/LSL_Constants.cs | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/OpenSim/Region/ScriptEngine/Shared/Api/Runtime/LSL_Constants.cs b/OpenSim/Region/ScriptEngine/Shared/Api/Runtime/LSL_Constants.cs index 3d17d98..da2c560 100644 --- a/OpenSim/Region/ScriptEngine/Shared/Api/Runtime/LSL_Constants.cs +++ b/OpenSim/Region/ScriptEngine/Shared/Api/Runtime/LSL_Constants.cs | |||
@@ -535,11 +535,11 @@ namespace OpenSim.Region.ScriptEngine.Shared.ScriptBase | |||
535 | public const int MASK_EVERYONE = 3; | 535 | public const int MASK_EVERYONE = 3; |
536 | public const int MASK_NEXT = 4; | 536 | public const int MASK_NEXT = 4; |
537 | 537 | ||
538 | public const int PERM_TRANSFER = 8192; | 538 | public const int PERM_TRANSFER = 0x2000; |
539 | public const int PERM_MODIFY = 16384; | 539 | public const int PERM_MODIFY = 0x4000; |
540 | public const int PERM_COPY = 32768; | 540 | public const int PERM_COPY = 0x8000; |
541 | public const int PERM_MOVE = 524288; | 541 | public const int PERM_MOVE = 0x80000; |
542 | public const int PERM_ALL = 2147483647; | 542 | public const int PERM_ALL = 0x7fffffff; |
543 | 543 | ||
544 | public const int PARCEL_MEDIA_COMMAND_STOP = 0; | 544 | public const int PARCEL_MEDIA_COMMAND_STOP = 0; |
545 | public const int PARCEL_MEDIA_COMMAND_PAUSE = 1; | 545 | public const int PARCEL_MEDIA_COMMAND_PAUSE = 1; |