diff options
author | Melanie | 2011-03-22 10:43:43 +0100 |
---|---|---|
committer | Melanie | 2011-03-22 10:43:43 +0100 |
commit | c330f89fb1954ba2a784cd5bc421965b7594d60c (patch) | |
tree | ae00576857798df9a4a6495b6e5bad83c47487ed /OpenSim/Data/IRegionData.cs | |
parent | Adding a helper function lifted from Aurora. Not for core. (diff) | |
download | opensim-SC-c330f89fb1954ba2a784cd5bc421965b7594d60c.zip opensim-SC-c330f89fb1954ba2a784cd5bc421965b7594d60c.tar.gz opensim-SC-c330f89fb1954ba2a784cd5bc421965b7594d60c.tar.bz2 opensim-SC-c330f89fb1954ba2a784cd5bc421965b7594d60c.tar.xz |
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.
Diffstat (limited to '')
-rw-r--r-- | OpenSim/Data/IRegionData.cs | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/OpenSim/Data/IRegionData.cs b/OpenSim/Data/IRegionData.cs index d21a312..46dc4fb 100644 --- a/OpenSim/Data/IRegionData.cs +++ b/OpenSim/Data/IRegionData.cs | |||
@@ -77,8 +77,7 @@ namespace OpenSim.Data | |||
77 | NoMove = 64, // Don't allow moving this region | 77 | NoMove = 64, // Don't allow moving this region |
78 | Reservation = 128, // This is an inactive reservation | 78 | Reservation = 128, // This is an inactive reservation |
79 | Authenticate = 256, // Require authentication | 79 | Authenticate = 256, // Require authentication |
80 | Hyperlink = 512, // Record represents a HG link | 80 | Hyperlink = 512 // Record represents a HG link |
81 | NoTraffic = 512 // Exclude this sim from traffic reporting | ||
82 | } | 81 | } |
83 | 82 | ||
84 | public class RegionDataDistanceCompare : IComparer<RegionData> | 83 | public class RegionDataDistanceCompare : IComparer<RegionData> |