From 33bba184f7292f856c8d429ce87272155de1c0b7 Mon Sep 17 00:00:00 2001 From: Svornost <11434-svornost@users.noreply.gitgud.io> Date: Sat, 6 Mar 2021 18:36:03 -0800 Subject: [PATCH] simpler --- src/interaction/main/fcnn.js | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/interaction/main/fcnn.js b/src/interaction/main/fcnn.js index 23707dd0216..48d774bfedb 100644 --- a/src/interaction/main/fcnn.js +++ b/src/interaction/main/fcnn.js @@ -163,9 +163,8 @@ App.FCNN = (function() { getText: function() { if (V.FCNNstation !== 1 && V.week >= 90) { return "FCNN: FCNN service has been temporarily suspended. Please stand by. "; - } else { - return this.getAllValidText().random() + " "; } + return this.getAllValidText().random() + " "; } }; })(); -- GitLab