diff --git a/app/Console/Commands/TabulateWinners.php b/app/Console/Commands/TabulateWinners.php
index 436ecb8..e1ebb00 100644
--- a/app/Console/Commands/TabulateWinners.php
+++ b/app/Console/Commands/TabulateWinners.php
@@ -67,7 +67,7 @@ class TabulateWinners extends Command
                     $query->select('vehicle')->from('car_show_winners');
                 })
                 ->where('vehicles.doNotJudge', '=', "0")
-                ->where('vehicles.type', '=', "$category")
+                //->where('vehicles.type', '=', "$category")
                 ->orderBy('totalscore', 'desc')
                 ->first();
             return $categoryWinnerQuery->vehicle;