* Removed references to "new LLUUID()", replaced with LLUUID.Zero.

This commit is contained in:
Adam Frisby
2007-11-24 10:36:54 +00:00
parent 39a3784b43
commit 0951f895ef
8 changed files with 13 additions and 13 deletions

View File

@@ -129,7 +129,7 @@ namespace OpenSim.Region.Environment.LandManagement
/// <returns></returns>
public Land createBaseLand()
{
return new Land(new LLUUID(), false, m_scene);
return new Land(LLUUID.Zero, false, m_scene);
}
/// <summary>

View File

@@ -101,7 +101,7 @@ namespace OpenSim.Region.Environment.Scenes
/// </summary>
public EntityBase()
{
m_uuid = new LLUUID();
m_uuid = LLUUID.Zero;
m_pos = new LLVector3();
m_velocity = new LLVector3();