From 7b95acefde3ef1533714b22ab13a5cf095518ab6 Mon Sep 17 00:00:00 2001 From: Steven Schoen Date: Sat, 5 Mar 2022 21:04:43 -0500 Subject: [PATCH 1/2] Present offline message as list --- src/engine.tsx | 11 ++++++++--- 1 file changed, 8 insertions(+), 3 deletions(-) diff --git a/src/engine.tsx b/src/engine.tsx index e3f67223f..57d9c9638 100644 --- a/src/engine.tsx +++ b/src/engine.tsx @@ -401,9 +401,14 @@ const Engine: { () => AlertEvents.emit( <> - Offline for {timeOfflineString}. While you were offline, your scripts generated{" "} - , your Hacknet Nodes generated {hacknetProdInfo} and you gained{" "} - reputation divided amongst your factions. + Offline for {timeOfflineString}. While you were offline: +
    +
  • Your scripts generated{" "}
  • +
  • Your Hacknet Nodes generated {hacknetProdInfo}
  • + {offlineReputation != 0 && +
  • You gained{" "} reputation divided amongst your factions +
  • } +
, ), 250, From 19b45a741114bea48a9d6ad101796cc4ebcb0474 Mon Sep 17 00:00:00 2001 From: Steven Schoen Date: Sun, 6 Mar 2022 03:38:17 -0500 Subject: [PATCH 2/2] Show reputation unconditionally --- src/engine.tsx | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/src/engine.tsx b/src/engine.tsx index 57d9c9638..18689a08f 100644 --- a/src/engine.tsx +++ b/src/engine.tsx @@ -405,9 +405,7 @@ const Engine: {
  • Your scripts generated{" "}
  • Your Hacknet Nodes generated {hacknetProdInfo}
  • - {offlineReputation != 0 && -
  • You gained{" "} reputation divided amongst your factions -
  • } +
  • You gained{" "} reputation divided amongst your factions
, ),