diff options
Diffstat (limited to '')
-rw-r--r-- | OpenSim/Data/SQLite/SQLiteRegionData.cs | 3 |
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) |