aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Framework/Communications/UserManagerBase.cs
diff options
context:
space:
mode:
authorAdam Frisby2007-11-24 10:36:54 +0000
committerAdam Frisby2007-11-24 10:36:54 +0000
commit0951f895ef07a784b094d5f8eb3825b65d5ad171 (patch)
tree8332a8ac3c7b0e2a3455ec30e1e4972f5747b469 /OpenSim/Framework/Communications/UserManagerBase.cs
parent* Added some bounds checks to the sendLandUpdate packet to deal with agents c... (diff)
downloadopensim-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/Communications/UserManagerBase.cs')
-rw-r--r--OpenSim/Framework/Communications/UserManagerBase.cs4
1 files changed, 2 insertions, 2 deletions
diff --git a/OpenSim/Framework/Communications/UserManagerBase.cs b/OpenSim/Framework/Communications/UserManagerBase.cs
index cab54fe..6916519 100644
--- a/OpenSim/Framework/Communications/UserManagerBase.cs
+++ b/OpenSim/Framework/Communications/UserManagerBase.cs
@@ -342,8 +342,8 @@ namespace OpenSim.Framework.UserManagement
342 agent.logoutTime = 0; 342 agent.logoutTime = 0;
343 343
344 // Current location 344 // Current location
345 agent.regionID = new LLUUID(); // Fill in later 345 agent.regionID = LLUUID.Zero; // Fill in later
346 agent.currentRegion = new LLUUID(); // Fill in later 346 agent.currentRegion = LLUUID.Zero; // Fill in later
347 347
348 profile.currentAgent = agent; 348 profile.currentAgent = agent;
349 } 349 }