aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Data/SQLite/SQLiteSimulationData.cs
diff options
context:
space:
mode:
Diffstat (limited to 'OpenSim/Data/SQLite/SQLiteSimulationData.cs')
-rw-r--r--OpenSim/Data/SQLite/SQLiteSimulationData.cs8
1 files changed, 8 insertions, 0 deletions
diff --git a/OpenSim/Data/SQLite/SQLiteSimulationData.cs b/OpenSim/Data/SQLite/SQLiteSimulationData.cs
index d4734a6..76f717d 100644
--- a/OpenSim/Data/SQLite/SQLiteSimulationData.cs
+++ b/OpenSim/Data/SQLite/SQLiteSimulationData.cs
@@ -732,9 +732,12 @@ namespace OpenSim.Data.SQLite
732 } 732 }
733 733
734 SceneObjectGroup group = new SceneObjectGroup(prim); 734 SceneObjectGroup group = new SceneObjectGroup(prim);
735
735 createdObjects.Add(group.UUID, group); 736 createdObjects.Add(group.UUID, group);
736 retvals.Add(group); 737 retvals.Add(group);
737 LoadItems(prim); 738 LoadItems(prim);
739
740
738 } 741 }
739 } 742 }
740 catch (Exception e) 743 catch (Exception e)
@@ -2940,6 +2943,11 @@ namespace OpenSim.Data.SQLite
2940 } 2943 }
2941 } 2944 }
2942 2945
2946 public UUID[] GetObjectIDs(UUID regionID)
2947 {
2948 return new UUID[0];
2949 }
2950
2943 public void SaveExtra(UUID regionID, string name, string value) 2951 public void SaveExtra(UUID regionID, string name, string value)
2944 { 2952 {
2945 } 2953 }