Add support for WARN 3 to completely disable warnings
This commit is contained in:
parent
9936f50cc5
commit
aea700fc3f
1 changed files with 4 additions and 2 deletions
|
@ -139,10 +139,12 @@ rez_prop(integer index)
|
||||||
}
|
}
|
||||||
integer perms = llGetInventoryPermMask(object, MASK_NEXT);
|
integer perms = llGetInventoryPermMask(object, MASK_NEXT);
|
||||||
string next = " for NEXT owner";
|
string next = " for NEXT owner";
|
||||||
if (WARN == 2)
|
if (WARN > 1)
|
||||||
{
|
{
|
||||||
next = "";
|
next = "";
|
||||||
perms = llGetInventoryPermMask(object, MASK_OWNER);
|
perms = -1;
|
||||||
|
if (WARN == 2)
|
||||||
|
perms = llGetInventoryPermMask(object, MASK_OWNER);
|
||||||
}
|
}
|
||||||
if (type == 0 || type == 3)
|
if (type == 0 || type == 3)
|
||||||
{
|
{
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue