change some lsl flag constants to Hexa

0.9.1.1
UbitUmarov 2020-01-07 14:49:56 +00:00
parent 066a6fbaa1
commit 7bdc408cac
1 changed files with 5 additions and 5 deletions

View File

@ -535,11 +535,11 @@ namespace OpenSim.Region.ScriptEngine.Shared.ScriptBase
public const int MASK_EVERYONE = 3;
public const int MASK_NEXT = 4;
public const int PERM_TRANSFER = 8192;
public const int PERM_MODIFY = 16384;
public const int PERM_COPY = 32768;
public const int PERM_MOVE = 524288;
public const int PERM_ALL = 2147483647;
public const int PERM_TRANSFER = 0x2000;
public const int PERM_MODIFY = 0x4000;
public const int PERM_COPY = 0x8000;
public const int PERM_MOVE = 0x80000;
public const int PERM_ALL = 0x7fffffff;
public const int PARCEL_MEDIA_COMMAND_STOP = 0;
public const int PARCEL_MEDIA_COMMAND_PAUSE = 1;