mirror of
https://github.com/opensim/opensim.git
synced 2026-08-09 18:55:58 +08:00
Allow estate config files to specify a specific EstateID. Defaults to 0 if not specified which uses auto increment id as current behaviour.
This commit is contained in:
@@ -88,9 +88,9 @@ namespace OpenSim.Services.EstateService
|
||||
return m_database.LoadEstateSettings(estateID);
|
||||
}
|
||||
|
||||
public EstateSettings CreateNewEstate()
|
||||
public EstateSettings CreateNewEstate(int estateID = 0)
|
||||
{
|
||||
return m_database.CreateNewEstate();
|
||||
return m_database.CreateNewEstate(estateID);
|
||||
}
|
||||
|
||||
public List<EstateSettings> LoadEstateSettingsAll()
|
||||
|
||||
Reference in New Issue
Block a user