diff options
Diffstat (limited to 'OpenSim/Data/MSSQL/MSSQLGridData.cs')
-rw-r--r-- | OpenSim/Data/MSSQL/MSSQLGridData.cs | 20 |
1 files changed, 11 insertions, 9 deletions
diff --git a/OpenSim/Data/MSSQL/MSSQLGridData.cs b/OpenSim/Data/MSSQL/MSSQLGridData.cs index eec2091..027796a 100644 --- a/OpenSim/Data/MSSQL/MSSQLGridData.cs +++ b/OpenSim/Data/MSSQL/MSSQLGridData.cs | |||
@@ -395,17 +395,17 @@ namespace OpenSim.Data.MSSQL | |||
395 | 395 | ||
396 | retval.regionHandle = tmp64; | 396 | retval.regionHandle = tmp64; |
397 | 397 | ||
398 | UUID tmp_uuid; | 398 | // UUID tmp_uuid; |
399 | if (!UUID.TryParse((string)reader["uuid"], out tmp_uuid)) | 399 | // if (!UUID.TryParse((string)reader["uuid"], out tmp_uuid)) |
400 | { | 400 | // { |
401 | return null; | 401 | // return null; |
402 | } | 402 | // } |
403 | 403 | ||
404 | retval.UUID = tmp_uuid; | 404 | retval.UUID = new UUID((Guid)reader["uuid"]); // tmp_uuid; |
405 | 405 | ||
406 | // non-critical parts | 406 | // non-critical parts |
407 | retval.regionName = reader["regionName"].ToString(); | 407 | retval.regionName = reader["regionName"].ToString(); |
408 | retval.originUUID = new UUID((string)reader["originUUID"]); | 408 | retval.originUUID = new UUID((Guid)reader["originUUID"]); |
409 | 409 | ||
410 | // Secrets | 410 | // Secrets |
411 | retval.regionRecvKey = reader["regionRecvKey"].ToString(); | 411 | retval.regionRecvKey = reader["regionRecvKey"].ToString(); |
@@ -443,8 +443,10 @@ namespace OpenSim.Data.MSSQL | |||
443 | retval.regionUserSendKey = reader["regionUserSendKey"].ToString(); | 443 | retval.regionUserSendKey = reader["regionUserSendKey"].ToString(); |
444 | 444 | ||
445 | // World Map Addition | 445 | // World Map Addition |
446 | UUID.TryParse((string)reader["regionMapTexture"], out retval.regionMapTextureID); | 446 | retval.regionMapTextureID = new UUID((Guid)reader["regionMapTexture"]); |
447 | UUID.TryParse((string)reader["owner_uuid"], out retval.owner_uuid); | 447 | retval.owner_uuid = new UUID((Guid)reader["owner_uuid"]); |
448 | // UUID.TryParse((string)reader["regionMapTexture"], out retval.regionMapTextureID); | ||
449 | // UUID.TryParse((string)reader["owner_uuid"], out retval.owner_uuid); | ||
448 | 450 | ||
449 | return retval; | 451 | return retval; |
450 | } | 452 | } |