private void ButtonExpanded(AdventureChooserButton button, bool expand)
 {
     if (expand)
     {
         AdventureConfig config = AdventureConfig.Get();
         foreach (AdventureChooserSubButton button2 in button.GetSubButtons())
         {
             if (config.IsFeaturedMode(button.GetAdventure(), button2.GetMode()))
             {
                 button2.Flash();
             }
         }
     }
 }