aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Framework/Data.MySQL/MySQLManager.cs
diff options
context:
space:
mode:
authorCharles Krinke2008-02-02 17:33:12 +0000
committerCharles Krinke2008-02-02 17:33:12 +0000
commit281245f43322f06356fbd58cc78805f1be1df57e (patch)
treeb3d9555fb235bb880fba199c4b5509ad23952c31 /OpenSim/Framework/Data.MySQL/MySQLManager.cs
parentThank you very much daTwitch for your first contribution to the C# simulator. (diff)
downloadopensim-SC_OLD-281245f43322f06356fbd58cc78805f1be1df57e.zip
opensim-SC_OLD-281245f43322f06356fbd58cc78805f1be1df57e.tar.gz
opensim-SC_OLD-281245f43322f06356fbd58cc78805f1be1df57e.tar.bz2
opensim-SC_OLD-281245f43322f06356fbd58cc78805f1be1df57e.tar.xz
Change casting slightly for reading owner_uuid from mysql.
Diffstat (limited to 'OpenSim/Framework/Data.MySQL/MySQLManager.cs')
-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