Fix a few mono compiler warnings. Minor cleanup.

This commit is contained in:
Jeff Ames
2008-03-17 17:39:42 +00:00
parent cd1978b424
commit a8aeec29da
3 changed files with 5 additions and 5 deletions
@@ -258,7 +258,7 @@ namespace OpenSim.Region.ScriptEngine.Common.ScriptEngineBase.AsyncCommandPlugin
if (ang_obj > ts.arc) keep = false;
}
if (keep && (ts.keyID != null) && (ts.keyID != LLUUID.Zero) && (ts.keyID != ent.UUID))
if (keep && (!ts.keyID.Equals(null)) && (ts.keyID != LLUUID.Zero) && (ts.keyID != ent.UUID))
{
keep = false;
}