diff options
author | Melanie | 2011-06-20 02:29:09 +0200 |
---|---|---|
committer | Melanie | 2011-06-20 02:29:09 +0200 |
commit | 163ee8216873f963efd3ea42dd007b095214bce0 (patch) | |
tree | e45f31851f202e06f956013d98a4c86d6d016b9d /OpenSim/Framework | |
parent | Make the last otem in a list created with llCSV2List findable (diff) | |
download | opensim-SC-163ee8216873f963efd3ea42dd007b095214bce0.zip opensim-SC-163ee8216873f963efd3ea42dd007b095214bce0.tar.gz opensim-SC-163ee8216873f963efd3ea42dd007b095214bce0.tar.bz2 opensim-SC-163ee8216873f963efd3ea42dd007b095214bce0.tar.xz |
Add some flags to control content in search better
Diffstat (limited to 'OpenSim/Framework')
-rw-r--r-- | OpenSim/Framework/RegionSettings.cs | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/OpenSim/Framework/RegionSettings.cs b/OpenSim/Framework/RegionSettings.cs index 673cf20..f0786fc 100644 --- a/OpenSim/Framework/RegionSettings.cs +++ b/OpenSim/Framework/RegionSettings.cs | |||
@@ -397,5 +397,18 @@ namespace OpenSim.Framework | |||
397 | set { m_LoadedCreationID = value; } | 397 | set { m_LoadedCreationID = value; } |
398 | } | 398 | } |
399 | 399 | ||
400 | private bool m_GodBlockSearch = false; | ||
401 | public bool GodBlockSearch | ||
402 | { | ||
403 | get { return m_GodBlockSearch; } | ||
404 | set { m_GodBlockSearch = value; } | ||
405 | } | ||
406 | |||
407 | private bool m_Casino = false; | ||
408 | public bool Casino | ||
409 | { | ||
410 | get { return m_Casino; } | ||
411 | set { m_Casino = value; } | ||
412 | } | ||
400 | } | 413 | } |
401 | } | 414 | } |