aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Data/IRegionData.cs
diff options
context:
space:
mode:
authorMelanie2010-01-19 04:17:27 +0000
committerMelanie2010-01-19 04:17:27 +0000
commitfe5d80a2852cd4edcc49168085b97446270ca8c4 (patch)
tree81d61c27fdbabcd362d00a1e1e5edaf5857e6e5b /OpenSim/Data/IRegionData.cs
parent* Fixed misspelling of field in GridService (diff)
downloadopensim-SC_OLD-fe5d80a2852cd4edcc49168085b97446270ca8c4.zip
opensim-SC_OLD-fe5d80a2852cd4edcc49168085b97446270ca8c4.tar.gz
opensim-SC_OLD-fe5d80a2852cd4edcc49168085b97446270ca8c4.tar.bz2
opensim-SC_OLD-fe5d80a2852cd4edcc49168085b97446270ca8c4.tar.xz
Add a Hyperlink flag to the regions table
Diffstat (limited to 'OpenSim/Data/IRegionData.cs')
-rw-r--r--OpenSim/Data/IRegionData.cs3
1 files changed, 2 insertions, 1 deletions
diff --git a/OpenSim/Data/IRegionData.cs b/OpenSim/Data/IRegionData.cs
index 9ed5dd0..8259f9b 100644
--- a/OpenSim/Data/IRegionData.cs
+++ b/OpenSim/Data/IRegionData.cs
@@ -75,6 +75,7 @@ namespace OpenSim.Data
75 LockedOut = 32, // Don't allow registration 75 LockedOut = 32, // Don't allow registration
76 NoMove = 64, // Don't allow moving this region 76 NoMove = 64, // Don't allow moving this region
77 Reservation = 128, // This is an inactive reservation 77 Reservation = 128, // This is an inactive reservation
78 Authenticate = 256 // Require authentication 78 Authenticate = 256, // Require authentication
79 Hyperlink = 512 // Record represents a HG link
79 } 80 }
80} 81}