diff options
author | unknown | 2009-12-07 18:03:53 +0100 |
---|---|---|
committer | unknown | 2009-12-07 18:05:40 +0100 |
commit | 29a740ec8c78bfc3c1ab5b41b302ae2205c6e9aa (patch) | |
tree | fa63a89c92a1d0140c31c867aac27f74083d481c /OpenSim/Data/MSSQL/MSSQLLegacyRegionData.cs | |
parent | Enforce physical prim max size on single prims. (diff) | |
download | opensim-SC_OLD-29a740ec8c78bfc3c1ab5b41b302ae2205c6e9aa.zip opensim-SC_OLD-29a740ec8c78bfc3c1ab5b41b302ae2205c6e9aa.tar.gz opensim-SC_OLD-29a740ec8c78bfc3c1ab5b41b302ae2205c6e9aa.tar.bz2 opensim-SC_OLD-29a740ec8c78bfc3c1ab5b41b302ae2205c6e9aa.tar.xz |
Initial windlight codebase commit
Diffstat (limited to 'OpenSim/Data/MSSQL/MSSQLLegacyRegionData.cs')
-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; |