diff options
author | unknown | 2009-12-09 01:34:26 +0100 |
---|---|---|
committer | unknown | 2009-12-09 01:34:26 +0100 |
commit | e3f229225c5a1506090bfcffcce6d423a566f1fe (patch) | |
tree | 8890b3404d3ca2045e6bb6ceb433069b60d77de0 /OpenSim/Data | |
parent | Merge branch 'careminster' into windlight (diff) | |
download | opensim-SC-e3f229225c5a1506090bfcffcce6d423a566f1fe.zip opensim-SC-e3f229225c5a1506090bfcffcce6d423a566f1fe.tar.gz opensim-SC-e3f229225c5a1506090bfcffcce6d423a566f1fe.tar.bz2 opensim-SC-e3f229225c5a1506090bfcffcce6d423a566f1fe.tar.xz |
Enable scripting interface for windlight
Diffstat (limited to '')
-rw-r--r-- | OpenSim/Data/MSSQL/MSSQLLegacyRegionData.cs | 4 | ||||
-rw-r--r-- | OpenSim/Data/Null/NullDataStore.cs | 4 | ||||
-rw-r--r-- | OpenSim/Data/SQLite/SQLiteRegionData.cs | 4 |
3 files changed, 12 insertions, 0 deletions
diff --git a/OpenSim/Data/MSSQL/MSSQLLegacyRegionData.cs b/OpenSim/Data/MSSQL/MSSQLLegacyRegionData.cs index 678b251..0b430c7 100644 --- a/OpenSim/Data/MSSQL/MSSQLLegacyRegionData.cs +++ b/OpenSim/Data/MSSQL/MSSQLLegacyRegionData.cs | |||
@@ -677,6 +677,10 @@ VALUES | |||
677 | //Return default LL windlight settings | 677 | //Return default LL windlight settings |
678 | return new RegionMeta7WindlightData(); | 678 | return new RegionMeta7WindlightData(); |
679 | } | 679 | } |
680 | public void StoreRegionWindlightSettings(RegionMeta7WindlightData wl) | ||
681 | { | ||
682 | //This connector doesn't support the windlight module yet | ||
683 | } | ||
680 | /// <summary> | 684 | /// <summary> |
681 | /// Loads the settings of a region. | 685 | /// Loads the settings of a region. |
682 | /// </summary> | 686 | /// </summary> |
diff --git a/OpenSim/Data/Null/NullDataStore.cs b/OpenSim/Data/Null/NullDataStore.cs index 39ca8f9..4b6d0f3 100644 --- a/OpenSim/Data/Null/NullDataStore.cs +++ b/OpenSim/Data/Null/NullDataStore.cs | |||
@@ -56,6 +56,10 @@ namespace OpenSim.Data.Null | |||
56 | //Return default LL windlight settings | 56 | //Return default LL windlight settings |
57 | return new RegionMeta7WindlightData(); | 57 | return new RegionMeta7WindlightData(); |
58 | } | 58 | } |
59 | public void StoreRegionWindlightSettings(RegionMeta7WindlightData wl) | ||
60 | { | ||
61 | //This connector doesn't support the windlight module yet | ||
62 | } | ||
59 | public RegionSettings LoadRegionSettings(UUID regionUUID) | 63 | public RegionSettings LoadRegionSettings(UUID regionUUID) |
60 | { | 64 | { |
61 | return null; | 65 | return null; |
diff --git a/OpenSim/Data/SQLite/SQLiteRegionData.cs b/OpenSim/Data/SQLite/SQLiteRegionData.cs index 53b806c..f1c1f78 100644 --- a/OpenSim/Data/SQLite/SQLiteRegionData.cs +++ b/OpenSim/Data/SQLite/SQLiteRegionData.cs | |||
@@ -278,6 +278,10 @@ namespace OpenSim.Data.SQLite | |||
278 | //Return default LL windlight settings | 278 | //Return default LL windlight settings |
279 | return new RegionMeta7WindlightData(); | 279 | return new RegionMeta7WindlightData(); |
280 | } | 280 | } |
281 | public void StoreRegionWindlightSettings(RegionMeta7WindlightData wl) | ||
282 | { | ||
283 | //This connector doesn't support the windlight module yet | ||
284 | } | ||
281 | public RegionSettings LoadRegionSettings(UUID regionUUID) | 285 | public RegionSettings LoadRegionSettings(UUID regionUUID) |
282 | { | 286 | { |
283 | lock (ds) | 287 | lock (ds) |