From dfdbdd299a2476a372326cf33280e96ab25fe963 Mon Sep 17 00:00:00 2001 From: lowercasedonkey <lowercasedonkey@gmail.com> Date: Mon, 19 Oct 2020 00:23:22 -0400 Subject: [PATCH] fix dupe intro --- src/facilities/incubator/incubatorInteract.js | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) diff --git a/src/facilities/incubator/incubatorInteract.js b/src/facilities/incubator/incubatorInteract.js index c77f3e482e8..cb9bbaf7a6b 100644 --- a/src/facilities/incubator/incubatorInteract.js +++ b/src/facilities/incubator/incubatorInteract.js @@ -34,14 +34,11 @@ App.UI.incubator = function() { if (V.incubatorSlaves > 2) { r.push(`It's well used. The hum of active tanks fill the air.`); - App.Events.addNode(el, r); } else if (V.incubatorSlaves > 0) { r.push(`It's barely used; most of the tanks lie dormant.`); - App.Events.addNode(el, r); } else { - r.push(`It's empty and quiet.`); - App.Events.addNode(el, r); - el.append( + r.push(`It's empty and quiet. `); + r.push( choice( "Decommission the incubator", () => { -- GitLab