From bb9a0481a96535242381c84a8151259f0bee0ec1 Mon Sep 17 00:00:00 2001 From: Cekis Date: Fri, 9 Jul 2021 11:24:19 -0700 Subject: [PATCH] Fixed issue with identifying Imperial General for max imperial rating --- current-gcw.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/current-gcw.php b/current-gcw.php index 0cd8283..ec4f2ff 100644 --- a/current-gcw.php +++ b/current-gcw.php @@ -72,7 +72,7 @@ try{ WHEN po.max_gcw_imperial_rating < 45000 THEN 'Major' WHEN po.max_gcw_imperial_rating < 50000 THEN 'Lt. Colonel' WHEN po.max_gcw_imperial_rating < 55000 THEN 'Colonel' - WHEN po.max_gcw_imperial_rating >= THEN 'General' + WHEN po.max_gcw_imperial_rating >= 55000 THEN 'General' END as highest_imperial_rank, CASE WHEN po.max_gcw_rebel_rating < 0 THEN 'Not Ranked'