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/Communications | |
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/Communications')
-rw-r--r-- | OpenSim/Framework/Communications/UserManagerBase.cs | 4 |
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 | } |