diff options
-rw-r--r-- | OpenSim/Data/SQLite/SQLiteRegionData.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/OpenSim/Data/SQLite/SQLiteRegionData.cs b/OpenSim/Data/SQLite/SQLiteRegionData.cs index fe09077..8432e74 100644 --- a/OpenSim/Data/SQLite/SQLiteRegionData.cs +++ b/OpenSim/Data/SQLite/SQLiteRegionData.cs | |||
@@ -1764,7 +1764,7 @@ namespace OpenSim.Data.SQLite | |||
1764 | row["Dwell"] = land.Dwell; | 1764 | row["Dwell"] = land.Dwell; |
1765 | row["MediaType"] = land.MediaType; | 1765 | row["MediaType"] = land.MediaType; |
1766 | row["MediaDescription"] = land.MediaDescription; | 1766 | row["MediaDescription"] = land.MediaDescription; |
1767 | row["MediaSize"] = (string) land.MediaWidth + "," + (string) land.MediaHeight; | 1767 | row["MediaSize"] = land.MediaWidth.ToString() + "," + land.MediaHeight.ToString(); |
1768 | row["MediaLoop"] = land.MediaLoop.ToString(); | 1768 | row["MediaLoop"] = land.MediaLoop.ToString(); |
1769 | row["ObscureMusic"] = land.ObscureMusic.ToString(); | 1769 | row["ObscureMusic"] = land.ObscureMusic.ToString(); |
1770 | row["ObscureMedia"] = land.ObscureMedia.ToString(); | 1770 | row["ObscureMedia"] = land.ObscureMedia.ToString(); |