From 55d826f07c5a4c8ee8e72ba4b1cc734db51bfd55 Mon Sep 17 00:00:00 2001 From: John Willard <53777086+JohnFulpWillard@users.noreply.github.com> Date: Thu, 29 May 2025 15:57:04 -0400 Subject: [PATCH] Points are abbreviated again in the RD console header (#91350) Now says "Gen. Res." instead of "Points" ![image](https://github.com/user-attachments/assets/7746a364-05a7-45fd-832d-c1550421e415) In https://github.com/tgstation/tgstation/pull/81202 I added easier support for different types of research points, then we regressed a bit when we got the new UI, this re-adds that part so not every type of point is called "Points". --- tgui/packages/tgui/interfaces/Techweb/Content.tsx | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/tgui/packages/tgui/interfaces/Techweb/Content.tsx b/tgui/packages/tgui/interfaces/Techweb/Content.tsx index c628dcc6bc0..4bb49686584 100644 --- a/tgui/packages/tgui/interfaces/Techweb/Content.tsx +++ b/tgui/packages/tgui/interfaces/Techweb/Content.tsx @@ -10,6 +10,7 @@ export function TechwebContent(props) { d_disk, node_cache, points_last_tick, + point_types_abbreviations = [], points, queue_nodes = [], sec_protocols, @@ -32,15 +33,12 @@ export function TechwebContent(props) { {sec_protocols ? 'Engaged' : 'Disengaged'} - {/* BUBBER CHANGE START: ADD POINT IDENTIFICATION */} {Object.keys(points).map((k) => ( - - {' '} + {points[k]} {!!points_last_tick[k] && ` (+${points_last_tick[k]}/sec)`} ))} - {/* BUBBER CHANGE END: ADD POINT IDENTIFICATION */} {queue_nodes.length !== 0 ? Object.keys(queue_nodes).map((node_id) => (