diff --git a/indra/newview/llfloatergodtools.cpp b/indra/newview/llfloatergodtools.cpp index e0a979c7e..a97224815 100644 --- a/indra/newview/llfloatergodtools.cpp +++ b/indra/newview/llfloatergodtools.cpp @@ -786,6 +786,8 @@ void LLPanelRegionTools::setCheckFlags(U64 flags) getChild("block terraform")->setValue(flags & REGION_FLAGS_BLOCK_TERRAFORM ? TRUE : FALSE); getChild("block dwell")->setValue(flags & REGION_FLAGS_BLOCK_DWELL ? TRUE : FALSE); getChild("is sandbox")->setValue(flags & REGION_FLAGS_SANDBOX ? TRUE : FALSE ); + getChild("is gaming")->setValue(flags & REGION_FLAGS_GAMING ? true : false); + getChild("hide from search")->setValue(flags & REGION_FLAGS_HIDE_FROM_SEARCH ? true : false); } void LLPanelRegionTools::setBillableFactor(F32 billable_factor)