diff options
patch and files from mantis #1630, Thanks Melanie
Diffstat (limited to 'OpenSim/Region')
-rw-r--r-- | OpenSim/Region/Environment/Interfaces/IRegionDataStore.cs | 3 | ||||
-rw-r--r-- | OpenSim/Region/Storage/OpenSim.DataStore.MSSQL/MSSQLDataStore.cs | 9 |
2 files changed, 11 insertions, 1 deletions
diff --git a/OpenSim/Region/Environment/Interfaces/IRegionDataStore.cs b/OpenSim/Region/Environment/Interfaces/IRegionDataStore.cs index 0ea2c03..c189f95 100644 --- a/OpenSim/Region/Environment/Interfaces/IRegionDataStore.cs +++ b/OpenSim/Region/Environment/Interfaces/IRegionDataStore.cs | |||
@@ -76,7 +76,8 @@ namespace OpenSim.Region.Environment.Interfaces | |||
76 | void AddToRegionBanlist(RegionBanListItem item); | 76 | void AddToRegionBanlist(RegionBanListItem item); |
77 | void RemoveFromRegionBanlist(RegionBanListItem item); | 77 | void RemoveFromRegionBanlist(RegionBanListItem item); |
78 | 78 | ||
79 | 79 | void StoreRegionSettings(RegionSettings rs); | |
80 | RegionSettings LoadRegionSettings(LLUUID regionUUID); | ||
80 | 81 | ||
81 | void Shutdown(); | 82 | void Shutdown(); |
82 | } | 83 | } |
diff --git a/OpenSim/Region/Storage/OpenSim.DataStore.MSSQL/MSSQLDataStore.cs b/OpenSim/Region/Storage/OpenSim.DataStore.MSSQL/MSSQLDataStore.cs index 145d5eb..8db5d7d 100644 --- a/OpenSim/Region/Storage/OpenSim.DataStore.MSSQL/MSSQLDataStore.cs +++ b/OpenSim/Region/Storage/OpenSim.DataStore.MSSQL/MSSQLDataStore.cs | |||
@@ -124,6 +124,15 @@ namespace OpenSim.DataStore.MSSQL | |||
124 | } | 124 | } |
125 | } | 125 | } |
126 | 126 | ||
127 | public void StoreRegionSettings(RegionSettings rs) | ||
128 | { | ||
129 | } | ||
130 | |||
131 | public RegionSettings LoadRegionSettings(LLUUID regionUUID) | ||
132 | { | ||
133 | return null; | ||
134 | } | ||
135 | |||
127 | public void StoreObject(SceneObjectGroup obj, LLUUID regionUUID) | 136 | public void StoreObject(SceneObjectGroup obj, LLUUID regionUUID) |
128 | { | 137 | { |
129 | lock (ds) | 138 | lock (ds) |