/**
  * Record a fully seated table.
  *
  * @param Table $table
  */
 private function recordFullTable($table)
 {
     $happiness = $table->calculateHappiness();
     $this->fullTables[$happiness] = $table;
     // Determine if this is a holy table (positive happiness).
     if ($happiness > $this->holyKnightHappiness) {
         $this->holyKnightHappiness = $happiness;
         $this->holyKnightTable = $table;
     }
 }