From 55ac1c6dce15d768cc7240b75f903076a131c39e Mon Sep 17 00:00:00 2001 From: Sean Dague Date: Thu, 10 Apr 2008 14:50:52 +0000 Subject: renaming of attributes in UserAgentData for readability --- OpenSim/Data/MSSQL/MSSQLManager.cs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'OpenSim/Data/MSSQL') diff --git a/OpenSim/Data/MSSQL/MSSQLManager.cs b/OpenSim/Data/MSSQL/MSSQLManager.cs index 524efc4..e3179f7 100644 --- a/OpenSim/Data/MSSQL/MSSQLManager.cs +++ b/OpenSim/Data/MSSQL/MSSQLManager.cs @@ -366,11 +366,11 @@ namespace OpenSim.Data.MSSQL retval.LogoutTime = Convert.ToInt32(reader["logoutTime"].ToString()); // Current position - retval.CurrentRegion = (string)reader["currentRegion"]; - retval.CurrentHandle = Convert.ToUInt64(reader["currentHandle"].ToString()); + retval.Region = (string)reader["currentRegion"]; + retval.Handle = Convert.ToUInt64(reader["currentHandle"].ToString()); LLVector3 tmp_v; LLVector3.TryParse((string)reader["currentPos"], out tmp_v); - retval.CurrentPos = tmp_v; + retval.Position = tmp_v; } else -- cgit v1.1