mirror of
https://github.com/opensim/opensim.git
synced 2026-08-11 20:05:33 +08:00
* Removed references to "new LLUUID()", replaced with LLUUID.Zero.
This commit is contained in:
@@ -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>
|
||||
|
||||
@@ -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();
|
||||
|
||||
Reference in New Issue
Block a user