fix formatting issues from last patch
parent
b983f38e2a
commit
52c3671aa0
|
@ -1741,13 +1741,18 @@ namespace OpenSim.Region.ScriptEngine.Shared
|
|||
|
||||
public override bool Equals(Object o)
|
||||
{
|
||||
if (!(o is LSLInteger)) {
|
||||
if(o is int) {
|
||||
if (!(o is LSLInteger))
|
||||
{
|
||||
if (o is int)
|
||||
{
|
||||
return value == (int)o;
|
||||
} else {
|
||||
}
|
||||
else
|
||||
{
|
||||
return false;
|
||||
}
|
||||
}
|
||||
|
||||
return value == ((LSLInteger)o).value;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue