aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Services
diff options
context:
space:
mode:
authorMelanie2012-06-08 15:16:20 +0200
committerMelanie2012-06-08 15:16:20 +0200
commit21c3cf3dc3ac1266eeeca09227b316e1bc8b68b9 (patch)
tree6a06c8e3a27902897c9351f05e9275e7257481b2 /OpenSim/Services
parentAdd a frame based watchdog function to keyframed motion (diff)
parent*UNTESTED* fix PRIM_LINK_TARGET. Make it work on avatars, set any pending pos... (diff)
downloadopensim-SC_OLD-21c3cf3dc3ac1266eeeca09227b316e1bc8b68b9.zip
opensim-SC_OLD-21c3cf3dc3ac1266eeeca09227b316e1bc8b68b9.tar.gz
opensim-SC_OLD-21c3cf3dc3ac1266eeeca09227b316e1bc8b68b9.tar.bz2
opensim-SC_OLD-21c3cf3dc3ac1266eeeca09227b316e1bc8b68b9.tar.xz
Merge branch 'ubitwork' of ssh://3dhosting.de/var/git/careminster into ubitwork
Diffstat (limited to 'OpenSim/Services')
-rw-r--r--OpenSim/Services/Connectors/Simulation/SimulationDataService.cs5
1 files changed, 5 insertions, 0 deletions
diff --git a/OpenSim/Services/Connectors/Simulation/SimulationDataService.cs b/OpenSim/Services/Connectors/Simulation/SimulationDataService.cs
index ccef50b..620bb10 100644
--- a/OpenSim/Services/Connectors/Simulation/SimulationDataService.cs
+++ b/OpenSim/Services/Connectors/Simulation/SimulationDataService.cs
@@ -148,5 +148,10 @@ namespace OpenSim.Services.Connectors
148 { 148 {
149 m_database.RemoveRegionWindlightSettings(regionID); 149 m_database.RemoveRegionWindlightSettings(regionID);
150 } 150 }
151
152 public UUID[] GetObjectIDs(UUID regionID)
153 {
154 return m_database.GetObjectIDs(regionID);
155 }
151 } 156 }
152} 157}