diff options
Diffstat (limited to 'OpenSim/Data/MSSQL')
-rw-r--r-- | OpenSim/Data/MSSQL/MSSQLLegacyRegionData.cs | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/OpenSim/Data/MSSQL/MSSQLLegacyRegionData.cs b/OpenSim/Data/MSSQL/MSSQLLegacyRegionData.cs index 6371307..678b251 100644 --- a/OpenSim/Data/MSSQL/MSSQLLegacyRegionData.cs +++ b/OpenSim/Data/MSSQL/MSSQLLegacyRegionData.cs | |||
@@ -671,7 +671,12 @@ VALUES | |||
671 | cmd.ExecuteNonQuery(); | 671 | cmd.ExecuteNonQuery(); |
672 | } | 672 | } |
673 | } | 673 | } |
674 | 674 | public RegionMeta7WindlightData LoadRegionWindlightSettings(UUID regionUUID) | |
675 | { | ||
676 | //This connector doesn't support the windlight module yet | ||
677 | //Return default LL windlight settings | ||
678 | return new RegionMeta7WindlightData(); | ||
679 | } | ||
675 | /// <summary> | 680 | /// <summary> |
676 | /// Loads the settings of a region. | 681 | /// Loads the settings of a region. |
677 | /// </summary> | 682 | /// </summary> |
@@ -696,7 +701,7 @@ VALUES | |||
696 | } | 701 | } |
697 | } | 702 | } |
698 | 703 | ||
699 | //If comes here then there is now region setting for that region | 704 | //If we reach this point then there are new region settings for that region |
700 | regionSettings = new RegionSettings(); | 705 | regionSettings = new RegionSettings(); |
701 | regionSettings.RegionUUID = regionUUID; | 706 | regionSettings.RegionUUID = regionUUID; |
702 | regionSettings.OnSave += StoreRegionSettings; | 707 | regionSettings.OnSave += StoreRegionSettings; |