Change casting slightly for reading owner_uuid from mysql.
parent
6a1d9e8da1
commit
281245f433
OpenSim/Framework/Data.MySQL
|
@ -342,7 +342,8 @@ 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()'
|
// 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)
|
// 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
|
// end of daTwitch's mods to this file
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue