Fix precedence of the "!" logical NOT operator.
We knew that in OpenSim, the bitwise NOT "~" operator's precedence was broken (see <http://opensimulator.org/mantis/view.php?id=3268>), but it appears that the same bug affects the logical NOT operator "!" as well, so it needs parentheses when followed by more expressions.
This commit is contained in:
parent
d8069cd1a9
commit
4ed043d823
8 changed files with 12 additions and 12 deletions
|
@ -498,7 +498,7 @@ default
|
|||
|
||||
touch_end(integer touched)
|
||||
{
|
||||
if (!SCRIPT_CHANNEL && !has_security && MTYPE < 3)
|
||||
if (SCRIPT_CHANNEL == 0 && (!has_security) && MTYPE < 3)
|
||||
{
|
||||
llMessageLinked(LINK_SET, 90005, "", llDetectedKey(0)); // 90005=send menu to user
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue