change default scopeID to UUID.Zero

This commit is contained in:
UbitUmarov
2015-08-29 00:32:36 +01:00
parent 46054d4f02
commit f31f9002de
3 changed files with 6 additions and 3 deletions

View File

@@ -117,7 +117,8 @@ namespace OpenSim.Server.Handlers.MapImage
return FailureResult("Bad request.");
}
int x = 0, y = 0;
UUID scopeID = new UUID("07f8d88e-cd5e-4239-a0ed-843f75d09992");
// UUID scopeID = new UUID("07f8d88e-cd5e-4239-a0ed-843f75d09992");
UUID scopeID = UUID.Zero;
Int32.TryParse(request["X"].ToString(), out x);
Int32.TryParse(request["Y"].ToString(), out y);
if (request.ContainsKey("SCOPE"))