Skip to content

Commit

Permalink
Fix
Browse files Browse the repository at this point in the history
  • Loading branch information
alexomur committed Aug 14, 2023
1 parent 3bd5e6a commit bcea043
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions AliveReporter/EventHandler.cs
Original file line number Diff line number Diff line change
Expand Up @@ -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 ");
}

Expand Down

0 comments on commit bcea043

Please sign in to comment.