mantis 9100: change Yengine order of precendence of && to be same as ||. It had higher and that did not match lsl specification or xengine. (||| stays with higher than ||| as per c# spec)

This commit is contained in:
UbitUmarov
2023-12-02 13:54:07 +00:00
parent 602569e5f7
commit acf41e9eef

View File

@@ -113,7 +113,8 @@ namespace OpenSim.Region.ScriptEngine.Yengine
{ typeof(TokenKwOrOr), 100 },
{ typeof(TokenKwAndAnd), 120 },
//{ typeof(TokenKwAndAnd), 120 },
{ typeof(TokenKwAndAnd), 100 },
{ typeof(TokenKwOr), 140 },