diff options
-rw-r--r-- | OpenSim/Region/ScriptEngine/Shared/LSL_Types.cs | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/OpenSim/Region/ScriptEngine/Shared/LSL_Types.cs b/OpenSim/Region/ScriptEngine/Shared/LSL_Types.cs index f3ad288..f3a2997 100644 --- a/OpenSim/Region/ScriptEngine/Shared/LSL_Types.cs +++ b/OpenSim/Region/ScriptEngine/Shared/LSL_Types.cs | |||
@@ -1614,6 +1614,12 @@ namespace OpenSim.Region.ScriptEngine.Shared | |||
1614 | return ret; | 1614 | return ret; |
1615 | } | 1615 | } |
1616 | 1616 | ||
1617 | static public LSLInteger operator ^(LSLInteger i1, LSLInteger i2) | ||
1618 | { | ||
1619 | int ret = i1.value ^ i2.value; | ||
1620 | return ret; | ||
1621 | } | ||
1622 | |||
1617 | public static LSLInteger operator ++(LSLInteger i) | 1623 | public static LSLInteger operator ++(LSLInteger i) |
1618 | { | 1624 | { |
1619 | i.value++; | 1625 | i.value++; |