aboutsummaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
authorTeravus Ovares2008-05-01 00:40:47 +0000
committerTeravus Ovares2008-05-01 00:40:47 +0000
commit4dfc9bdd0ba151e1aaa21ebb00887985833ebe7a (patch)
treed5f2ddcf452cb80f04bc5ec81c6ff8da1162aa22
parent* Spring cleaned a bunch of '//TODO: unused' marked functions. (diff)
downloadopensim-SC_OLD-4dfc9bdd0ba151e1aaa21ebb00887985833ebe7a.zip
opensim-SC_OLD-4dfc9bdd0ba151e1aaa21ebb00887985833ebe7a.tar.gz
opensim-SC_OLD-4dfc9bdd0ba151e1aaa21ebb00887985833ebe7a.tar.bz2
opensim-SC_OLD-4dfc9bdd0ba151e1aaa21ebb00887985833ebe7a.tar.xz
* Whoops, SQLite land data malfunction. Fixed.
Diffstat (limited to '')
-rw-r--r--OpenSim/Data/SQLite/SQLiteRegionData.cs3
1 files changed, 2 insertions, 1 deletions
diff --git a/OpenSim/Data/SQLite/SQLiteRegionData.cs b/OpenSim/Data/SQLite/SQLiteRegionData.cs
index 01c63ef..b6463f3 100644
--- a/OpenSim/Data/SQLite/SQLiteRegionData.cs
+++ b/OpenSim/Data/SQLite/SQLiteRegionData.cs
@@ -976,7 +976,7 @@ namespace OpenSim.Data.SQLite
976 { 976 {
977 Helpers.TryParse((string)row["AuthbuyerID"], out authBuyerID); 977 Helpers.TryParse((string)row["AuthbuyerID"], out authBuyerID);
978 } 978 }
979 catch (InvalidCastException) 979 catch (InvalidCastException e)
980 { 980 {
981 // Database table was created before we got here and now has null values :P 981 // Database table was created before we got here and now has null values :P
982 try 982 try
@@ -1165,6 +1165,7 @@ namespace OpenSim.Data.SQLite
1165 row["UserLookAtX"] = land.userLookAt.X; 1165 row["UserLookAtX"] = land.userLookAt.X;
1166 row["UserLookAtY"] = land.userLookAt.Y; 1166 row["UserLookAtY"] = land.userLookAt.Y;
1167 row["UserLookAtZ"] = land.userLookAt.Z; 1167 row["UserLookAtZ"] = land.userLookAt.Z;
1168 row["AuthbuyerID"] = Util.ToRawUuidString(land.authBuyerID);
1168 } 1169 }
1169 1170
1170 private void fillLandAccessRow(DataRow row, ParcelManager.ParcelAccessEntry entry, LLUUID parcelID) 1171 private void fillLandAccessRow(DataRow row, ParcelManager.ParcelAccessEntry entry, LLUUID parcelID)