replace 2 instances of "0000...." with LLUUID.Zero.ToSting() because

I was in the file and noticed them.
0.6.0-stable
Sean Dague 2008-05-07 15:07:46 +00:00
parent 3792827cf3
commit e1e4fe7361
1 changed files with 2 additions and 2 deletions

View File

@ -2474,7 +2474,7 @@ namespace OpenSim.Region.ScriptEngine.Common
}
else
{
return "00000000-0000-0000-0000-000000000000";
return LLUUID.Zero.ToString();
}
}
@ -2488,7 +2488,7 @@ namespace OpenSim.Region.ScriptEngine.Common
}
else
{
return "00000000-0000-0000-0000-000000000000";
return LLUUID.Zero.ToString();
}
}