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/Framework/RegionInfo.cs | |
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/Framework/RegionInfo.cs')
-rw-r--r-- | OpenSim/Framework/RegionInfo.cs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/OpenSim/Framework/RegionInfo.cs b/OpenSim/Framework/RegionInfo.cs index 7ef4205..75923ee 100644 --- a/OpenSim/Framework/RegionInfo.cs +++ b/OpenSim/Framework/RegionInfo.cs | |||
@@ -66,7 +66,7 @@ namespace OpenSim.Framework | |||
66 | m_internalEndPoint = new IPEndPoint(IPAddress.Parse("0.0.0.0"), port); | 66 | m_internalEndPoint = new IPEndPoint(IPAddress.Parse("0.0.0.0"), port); |
67 | } | 67 | } |
68 | 68 | ||
69 | public LLUUID RegionID = new LLUUID(); | 69 | public LLUUID RegionID = LLUUID.Zero; |
70 | 70 | ||
71 | private uint m_remotingPort; | 71 | private uint m_remotingPort; |
72 | public uint RemotingPort | 72 | public uint RemotingPort |
@@ -191,7 +191,7 @@ namespace OpenSim.Framework | |||
191 | public string DataStore = ""; | 191 | public string DataStore = ""; |
192 | public bool isSandbox = false; | 192 | public bool isSandbox = false; |
193 | 193 | ||
194 | public LLUUID MasterAvatarAssignedUUID = new LLUUID(); | 194 | public LLUUID MasterAvatarAssignedUUID = LLUUID.Zero; |
195 | public string MasterAvatarFirstName = ""; | 195 | public string MasterAvatarFirstName = ""; |
196 | public string MasterAvatarLastName = ""; | 196 | public string MasterAvatarLastName = ""; |
197 | public string MasterAvatarSandboxPassword = ""; | 197 | public string MasterAvatarSandboxPassword = ""; |