From 3ec025968c56314612fbf8dc6fcbacc3a4b970ea Mon Sep 17 00:00:00 2001 From: Tom Date: Thu, 29 Apr 2021 23:42:52 +0100 Subject: [PATCH] Adds descriptions to things you can take the cell out of (#5323) * descripshuns * Revert "descripshuns" This reverts commit b32e87dd9ed5ab031fbd98512fc90c92ae0d2a35. * update * code readability --- modular_skyrat/modules/cell_component/code/cell_component.dm | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/modular_skyrat/modules/cell_component/code/cell_component.dm b/modular_skyrat/modules/cell_component/code/cell_component.dm index c199e5fba84..c70e39bac75 100644 --- a/modular_skyrat/modules/cell_component/code/cell_component.dm +++ b/modular_skyrat/modules/cell_component/code/cell_component.dm @@ -124,7 +124,8 @@ component_cell_out_of_charge/component_cell_removed proc using loc where necessa if(!inserted_cell) examine_list += "It does not have a cell inserted!" else if(!inside_robot) - examine_list += "It has [inserted_cell] inserted. It has [inserted_cell.percent()]% charge left." + examine_list += "It has [inserted_cell] inserted. It has [inserted_cell.percent()]% charge left.\ + Ctrl+Shift+Click to remove the [inserted_cell]." else examine_list += "It is drawing power from an external powersource, reading [inserted_cell.percent()]% charge."