mirror of
https://github.com/opensim/opensim.git
synced 2026-07-31 05:45:37 +08:00
fix formatting issues from last patch
This commit is contained in:
@@ -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;
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user