From 281245f43322f06356fbd58cc78805f1be1df57e Mon Sep 17 00:00:00 2001 From: Charles Krinke Date: Sat, 2 Feb 2008 17:33:12 +0000 Subject: [PATCH] Change casting slightly for reading owner_uuid from mysql. --- OpenSim/Framework/Data.MySQL/MySQLManager.cs | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/OpenSim/Framework/Data.MySQL/MySQLManager.cs b/OpenSim/Framework/Data.MySQL/MySQLManager.cs index eb94cbd509..dba367ea9c 100644 --- a/OpenSim/Framework/Data.MySQL/MySQLManager.cs +++ b/OpenSim/Framework/Data.MySQL/MySQLManager.cs @@ -342,8 +342,9 @@ namespace OpenSim.Framework.Data.MySQL // this particular section of the mod attempts to supply a value from the region table to the caller of 'readSimRow()' // for the UUID of the region's owner (master avatar) // - retval.owner_uuid = (string) reader["owner_uuid"]; - // + //retval.owner_uuid = (string) reader["owner_uuid"]; + retval.owner_uuid = new LLUUID((string)reader["owner_uuid"]); + // // end of daTwitch's mods to this file } else