From 8a76b5d1d212d2e416dc8c351c3e22693cc5af70 Mon Sep 17 00:00:00 2001 From: Lirusaito Date: Mon, 11 Feb 2013 02:15:00 -0500 Subject: [PATCH] Silly fox missed a spot! --- indra/newview/llfloatergodtools.cpp | 2 ++ 1 file changed, 2 insertions(+) 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)