aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Data/Null
diff options
context:
space:
mode:
authorMelanie2012-06-07 22:39:03 +0200
committerMelanie2012-06-07 22:39:03 +0200
commit26c5b329886e3bbf81e2c853ef2fc6d648ad5273 (patch)
treeb19ea7eef37fd74dfd79f5c17ab8513462add2b4 /OpenSim/Data/Null
parentImplement playing of the real collision sounds, change scaling for avatar (diff)
downloadopensim-SC_OLD-26c5b329886e3bbf81e2c853ef2fc6d648ad5273.zip
opensim-SC_OLD-26c5b329886e3bbf81e2c853ef2fc6d648ad5273.tar.gz
opensim-SC_OLD-26c5b329886e3bbf81e2c853ef2fc6d648ad5273.tar.bz2
opensim-SC_OLD-26c5b329886e3bbf81e2c853ef2fc6d648ad5273.tar.xz
Add the ability to query the MYSQL databse for a list of the stored prim UUIDs
Diffstat (limited to 'OpenSim/Data/Null')
-rw-r--r--OpenSim/Data/Null/NullSimulationData.cs5
1 files changed, 5 insertions, 0 deletions
diff --git a/OpenSim/Data/Null/NullSimulationData.cs b/OpenSim/Data/Null/NullSimulationData.cs
index b788976..24b4511 100644
--- a/OpenSim/Data/Null/NullSimulationData.cs
+++ b/OpenSim/Data/Null/NullSimulationData.cs
@@ -133,5 +133,10 @@ namespace OpenSim.Data.Null
133 public void Shutdown() 133 public void Shutdown()
134 { 134 {
135 } 135 }
136
137 public UUID[] GetObjectIDs(UUID regionID)
138 {
139 return new UUID[0];
140 }
136 } 141 }
137} 142}