///
 /// \brief Crashes the power system
 ///
 /// \return Returns 0
 ///
 /// \details Sets the power level of all rooms to 0
 ///
 int _crash()
 {
     rooms.crash();
     foreach (TerminalButton button in buttons)
     {
         button.update();
     }
     return(0);
 }