mirror of
https://github.com/opensim/opensim.git
synced 2026-08-05 17:05:55 +08:00
The regionUUID is now being passed to the datastore calls.
This commit is contained in:
@@ -18,17 +18,17 @@ namespace OpenSim.DataStore.NullStorage
|
||||
return;
|
||||
}
|
||||
|
||||
public void StoreObject(SceneObjectGroup obj)
|
||||
public void StoreObject(SceneObjectGroup obj, LLUUID regionUUID)
|
||||
{
|
||||
|
||||
}
|
||||
|
||||
public void RemoveObject(LLUUID obj)
|
||||
public void RemoveObject(LLUUID obj, LLUUID regionUUID)
|
||||
{
|
||||
|
||||
}
|
||||
|
||||
public List<SceneObjectGroup> LoadObjects()
|
||||
public List<SceneObjectGroup> LoadObjects(LLUUID regionUUID)
|
||||
{
|
||||
return new List<SceneObjectGroup>();
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user