- {day}
+
+ {day}
+ {parity}
+ {last_nights_kills}
+
{chars}
diff --git a/werewolves/src/components/host/setup.rs b/werewolves/src/components/host/setup.rs
index ad8934e..aecef47 100644
--- a/werewolves/src/components/host/setup.rs
+++ b/werewolves/src/components/host/setup.rs
@@ -131,20 +131,21 @@ pub fn SetupCategory(
.map(|(r, count)| {
let as_role = r.into_role();
let wakes = as_role.wakes_night_zero().then_some("wakes");
- let count = matches!(mode, CategoryMode::ShowExactRoleCount).then(|| {
- html! {
-
{count}
- }
- });
+ let count =
+ (matches!(mode, CategoryMode::ShowExactRoleCount) && count > 0).then(|| {
+ html! {
+
{count}
+ }
+ });
let killer_inactive = as_role.killer().killer().not().then_some("inactive");
let powerful_inactive = as_role.powerful().powerful().not().then_some("inactive");
let alignment = as_role.alignment().icon();
html! {
{count}
-
+
{r.to_string().to_case(Case::Title)}
-
+