From 7f7e7ac598f4a9e03c5bd205f1507cd7a76394fe Mon Sep 17 00:00:00 2001 From: Brendan Golden Date: Fri, 14 Mar 2025 04:59:31 +0000 Subject: [PATCH] fix: output looks strange when teh committee value is 0 --- src/commands/count.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/commands/count.rs b/src/commands/count.rs index 0289c59..678c9e0 100644 --- a/src/commands/count.rs +++ b/src/commands/count.rs @@ -118,7 +118,7 @@ pub mod servers { // treat teh committee server as its own thing let committee_current = get_wolves_committee(&db).await; - cs.push((committee_current, 0, String::from("Committee Server"))); + cs.push((committee_current, committee_current, String::from("Committee Server"))); cs.sort_by_key(|(current, _, _)| *current); cs.reverse();