Add some more fields to Estate settings and make them work.

Run alter table estate_settings add column AllowLandmark tinyint not null default 1, add column AllowParcelChanges tinyint not null default 1, add column AllowSetHome tinyint not null default 1;
to make this work.
This commit is contained in:
Melanie
2011-03-22 10:43:43 +01:00
parent 3cfaf4c225
commit c330f89fb1
4 changed files with 45 additions and 5 deletions

View File

@@ -45,5 +45,7 @@ namespace OpenSim.Region.Framework.Interfaces
/// Tell all clients about the current state of the region (terrain textures, water height, etc.).
/// </summary>
void sendRegionHandshakeToAll();
void TriggerEstateInfoChange();
void TriggerRegionInfoChange();
}
}