From bcea043ee9f7bf02cbdf202808f8248236ad0024 Mon Sep 17 00:00:00 2001 From: alexomur Date: Mon, 14 Aug 2023 22:13:19 +0300 Subject: [PATCH] Fix --- AliveReporter/EventHandler.cs | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/AliveReporter/EventHandler.cs b/AliveReporter/EventHandler.cs index 958a1a1..30aa496 100644 --- a/AliveReporter/EventHandler.cs +++ b/AliveReporter/EventHandler.cs @@ -38,28 +38,28 @@ private void InitCassie() if (DClass > 0) { - cassieText += (DClass + " D Class"); + cassieText += (DClass + " D Class "); translatedText += (DClass + " D-Class "); } if (scientists > 0) { - cassieText += (scientists + " scientists"); + cassieText += (scientists + " scientists "); translatedText += (scientists + " scientists "); } if (guards > 0) { - cassieText += (guards + " guards"); + cassieText += (guards + " guards "); translatedText += (guards + " guards "); } if (NTFs > 0) { - cassieText += (NTFs + " N T F operators"); + cassieText += (NTFs + " N T F operators "); translatedText += (NTFs + " NTF operators "); } if (CIs > 0) { - cassieText += (CIs + " Chaos operators"); + cassieText += (CIs + " Chaos operators "); translatedText += (CIs + " Chaos operators "); } if (SCPs > 0) { - cassieText += (SCPs + " SCPs"); + cassieText += (SCPs + " SCPs "); translatedText += (SCPs + " SCPs "); }