diff options
author | Sean Dague | 2008-04-10 14:50:52 +0000 |
---|---|---|
committer | Sean Dague | 2008-04-10 14:50:52 +0000 |
commit | 55ac1c6dce15d768cc7240b75f903076a131c39e (patch) | |
tree | ec8ec06c14f382265228d756f89a6c1e43ded15c /OpenSim/Data/MSSQL/MSSQLManager.cs | |
parent | changing UserAgentData to use properties. This caused more (diff) | |
download | opensim-SC_OLD-55ac1c6dce15d768cc7240b75f903076a131c39e.zip opensim-SC_OLD-55ac1c6dce15d768cc7240b75f903076a131c39e.tar.gz opensim-SC_OLD-55ac1c6dce15d768cc7240b75f903076a131c39e.tar.bz2 opensim-SC_OLD-55ac1c6dce15d768cc7240b75f903076a131c39e.tar.xz |
renaming of attributes in UserAgentData for readability
Diffstat (limited to '')
-rw-r--r-- | OpenSim/Data/MSSQL/MSSQLManager.cs | 6 |
1 files changed, 3 insertions, 3 deletions
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 | |||
366 | retval.LogoutTime = Convert.ToInt32(reader["logoutTime"].ToString()); | 366 | retval.LogoutTime = Convert.ToInt32(reader["logoutTime"].ToString()); |
367 | 367 | ||
368 | // Current position | 368 | // Current position |
369 | retval.CurrentRegion = (string)reader["currentRegion"]; | 369 | retval.Region = (string)reader["currentRegion"]; |
370 | retval.CurrentHandle = Convert.ToUInt64(reader["currentHandle"].ToString()); | 370 | retval.Handle = Convert.ToUInt64(reader["currentHandle"].ToString()); |
371 | LLVector3 tmp_v; | 371 | LLVector3 tmp_v; |
372 | LLVector3.TryParse((string)reader["currentPos"], out tmp_v); | 372 | LLVector3.TryParse((string)reader["currentPos"], out tmp_v); |
373 | retval.CurrentPos = tmp_v; | 373 | retval.Position = tmp_v; |
374 | 374 | ||
375 | } | 375 | } |
376 | else | 376 | else |