Minor change.

prioritization
Diva Canto 2009-10-05 13:14:14 -07:00
parent 9bd1353875
commit 282b752035
1 changed files with 1 additions and 1 deletions

View File

@ -113,7 +113,7 @@ namespace OpenSim.Server.Handlers.Grid
byte[] Register(Dictionary<string, string> request)
{
UUID scopeID = UUID.Zero;
if (request["SCOPEID"] != null)
if (request.ContainsKey("SCOPEID"))
UUID.TryParse(request["SCOPEID"], out scopeID);
else
m_log.WarnFormat("[GRID HANDLER]: no scopeID in request to register region");