* Removed references to "new LLUUID()", replaced with LLUUID.Zero.

This commit is contained in:
Adam Frisby
2007-11-24 10:36:54 +00:00
parent 39a3784b43
commit 0951f895ef
8 changed files with 13 additions and 13 deletions

View File

@@ -342,8 +342,8 @@ namespace OpenSim.Framework.UserManagement
agent.logoutTime = 0;
// Current location
agent.regionID = new LLUUID(); // Fill in later
agent.currentRegion = new LLUUID(); // Fill in later
agent.regionID = LLUUID.Zero; // Fill in later
agent.currentRegion = LLUUID.Zero; // Fill in later
profile.currentAgent = agent;
}