diff options
author | John Hurliman | 2010-04-02 13:32:40 -0700 |
---|---|---|
committer | John Hurliman | 2010-04-02 13:32:40 -0700 |
commit | a895de4414fa3a9439500a2bbbb18d4bc24fa624 (patch) | |
tree | 5adccfbbd91fceb4366c82e71a786270a95c1653 /OpenSim/Data/MSSQL/MSSQLLegacyRegionData.cs | |
parent | * Better logging for Authenticate() failures (diff) | |
parent | Merge branch 'master' of melanie@opensimulator.org:/var/git/opensim (diff) | |
download | opensim-SC-a895de4414fa3a9439500a2bbbb18d4bc24fa624.zip opensim-SC-a895de4414fa3a9439500a2bbbb18d4bc24fa624.tar.gz opensim-SC-a895de4414fa3a9439500a2bbbb18d4bc24fa624.tar.bz2 opensim-SC-a895de4414fa3a9439500a2bbbb18d4bc24fa624.tar.xz |
Merge branch 'master' of ssh://opensimulator.org/var/git/opensim
Diffstat (limited to 'OpenSim/Data/MSSQL/MSSQLLegacyRegionData.cs')
-rw-r--r-- | OpenSim/Data/MSSQL/MSSQLLegacyRegionData.cs | 13 |
1 files changed, 11 insertions, 2 deletions
diff --git a/OpenSim/Data/MSSQL/MSSQLLegacyRegionData.cs b/OpenSim/Data/MSSQL/MSSQLLegacyRegionData.cs index c849f38..d6cb91f 100644 --- a/OpenSim/Data/MSSQL/MSSQLLegacyRegionData.cs +++ b/OpenSim/Data/MSSQL/MSSQLLegacyRegionData.cs | |||
@@ -691,7 +691,16 @@ VALUES | |||
691 | cmd.ExecuteNonQuery(); | 691 | cmd.ExecuteNonQuery(); |
692 | } | 692 | } |
693 | } | 693 | } |
694 | 694 | public RegionLightShareData LoadRegionWindlightSettings(UUID regionUUID) | |
695 | { | ||
696 | //This connector doesn't support the windlight module yet | ||
697 | //Return default LL windlight settings | ||
698 | return new RegionLightShareData(); | ||
699 | } | ||
700 | public void StoreRegionWindlightSettings(RegionLightShareData wl) | ||
701 | { | ||
702 | //This connector doesn't support the windlight module yet | ||
703 | } | ||
695 | /// <summary> | 704 | /// <summary> |
696 | /// Loads the settings of a region. | 705 | /// Loads the settings of a region. |
697 | /// </summary> | 706 | /// </summary> |
@@ -718,7 +727,7 @@ VALUES | |||
718 | } | 727 | } |
719 | } | 728 | } |
720 | 729 | ||
721 | //If comes here then there is now region setting for that region | 730 | //If we reach this point then there are new region settings for that region |
722 | regionSettings = new RegionSettings(); | 731 | regionSettings = new RegionSettings(); |
723 | regionSettings.RegionUUID = regionUUID; | 732 | regionSettings.RegionUUID = regionUUID; |
724 | regionSettings.OnSave += StoreRegionSettings; | 733 | regionSettings.OnSave += StoreRegionSettings; |