mirror of
https://github.com/opensim/opensim.git
synced 2026-08-11 11:57:03 +08:00
On initial region registration, if the user chooses the option to make the region part of an existing estate, then list the existing region names.
This commit is contained in:
@@ -90,6 +90,11 @@ namespace OpenSim.Services.Connectors
|
||||
{
|
||||
return m_database.LoadEstateSettings(estateID);
|
||||
}
|
||||
|
||||
public List<EstateSettings> LoadEstateSettingsAll()
|
||||
{
|
||||
return m_database.LoadEstateSettingsAll();
|
||||
}
|
||||
|
||||
public void StoreEstateSettings(EstateSettings es)
|
||||
{
|
||||
@@ -100,6 +105,11 @@ namespace OpenSim.Services.Connectors
|
||||
{
|
||||
return m_database.GetEstates(search);
|
||||
}
|
||||
|
||||
public List<int> GetEstatesAll()
|
||||
{
|
||||
return m_database.GetEstatesAll();
|
||||
}
|
||||
|
||||
public bool LinkRegion(UUID regionID, int estateID)
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user