aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim
diff options
context:
space:
mode:
Diffstat (limited to 'OpenSim')
-rw-r--r--OpenSim/Framework/Data.MySQL/MySQLManager.cs5
1 files changed, 3 insertions, 2 deletions
diff --git a/OpenSim/Framework/Data.MySQL/MySQLManager.cs b/OpenSim/Framework/Data.MySQL/MySQLManager.cs
index eb94cbd..dba367e 100644
--- a/OpenSim/Framework/Data.MySQL/MySQLManager.cs
+++ b/OpenSim/Framework/Data.MySQL/MySQLManager.cs
@@ -342,8 +342,9 @@ namespace OpenSim.Framework.Data.MySQL
342 // this particular section of the mod attempts to supply a value from the region table to the caller of 'readSimRow()' 342 // this particular section of the mod attempts to supply a value from the region table to the caller of 'readSimRow()'
343 // for the UUID of the region's owner (master avatar) 343 // for the UUID of the region's owner (master avatar)
344 // 344 //
345 retval.owner_uuid = (string) reader["owner_uuid"]; 345 //retval.owner_uuid = (string) reader["owner_uuid"];
346 // 346 retval.owner_uuid = new LLUUID((string)reader["owner_uuid"]);
347 //
347 // end of daTwitch's mods to this file 348 // end of daTwitch's mods to this file
348 } 349 }
349 else 350 else