diff options
author | Adam Frisby | 2007-11-24 10:36:54 +0000 |
---|---|---|
committer | Adam Frisby | 2007-11-24 10:36:54 +0000 |
commit | 0951f895ef07a784b094d5f8eb3825b65d5ad171 (patch) | |
tree | 8332a8ac3c7b0e2a3455ec30e1e4972f5747b469 /OpenSim/Region/Environment | |
parent | * Added some bounds checks to the sendLandUpdate packet to deal with agents c... (diff) | |
download | opensim-SC_OLD-0951f895ef07a784b094d5f8eb3825b65d5ad171.zip opensim-SC_OLD-0951f895ef07a784b094d5f8eb3825b65d5ad171.tar.gz opensim-SC_OLD-0951f895ef07a784b094d5f8eb3825b65d5ad171.tar.bz2 opensim-SC_OLD-0951f895ef07a784b094d5f8eb3825b65d5ad171.tar.xz |
* Removed references to "new LLUUID()", replaced with LLUUID.Zero.
Diffstat (limited to 'OpenSim/Region/Environment')
-rw-r--r-- | OpenSim/Region/Environment/LandManagement/LandManager.cs | 2 | ||||
-rw-r--r-- | OpenSim/Region/Environment/Scenes/EntityBase.cs | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/OpenSim/Region/Environment/LandManagement/LandManager.cs b/OpenSim/Region/Environment/LandManagement/LandManager.cs index dd35a26..60924ce 100644 --- a/OpenSim/Region/Environment/LandManagement/LandManager.cs +++ b/OpenSim/Region/Environment/LandManagement/LandManager.cs | |||
@@ -129,7 +129,7 @@ namespace OpenSim.Region.Environment.LandManagement | |||
129 | /// <returns></returns> | 129 | /// <returns></returns> |
130 | public Land createBaseLand() | 130 | public Land createBaseLand() |
131 | { | 131 | { |
132 | return new Land(new LLUUID(), false, m_scene); | 132 | return new Land(LLUUID.Zero, false, m_scene); |
133 | } | 133 | } |
134 | 134 | ||
135 | /// <summary> | 135 | /// <summary> |
diff --git a/OpenSim/Region/Environment/Scenes/EntityBase.cs b/OpenSim/Region/Environment/Scenes/EntityBase.cs index 94e2337..4556c63 100644 --- a/OpenSim/Region/Environment/Scenes/EntityBase.cs +++ b/OpenSim/Region/Environment/Scenes/EntityBase.cs | |||
@@ -101,7 +101,7 @@ namespace OpenSim.Region.Environment.Scenes | |||
101 | /// </summary> | 101 | /// </summary> |
102 | public EntityBase() | 102 | public EntityBase() |
103 | { | 103 | { |
104 | m_uuid = new LLUUID(); | 104 | m_uuid = LLUUID.Zero; |
105 | 105 | ||
106 | m_pos = new LLVector3(); | 106 | m_pos = new LLVector3(); |
107 | m_velocity = new LLVector3(); | 107 | m_velocity = new LLVector3(); |