From 35cd30620f67ddb1926451f33a2509c75721f8e1 Mon Sep 17 00:00:00 2001 From: Iajret Creature <122297233+Steals-The-PRs@users.noreply.github.com> Date: Sun, 2 Jun 2024 15:33:24 +0300 Subject: [PATCH] [MIRROR] adds missing context tips to atmos canisters (#2778) (#3581) * adds missing context tips to atmos canisters (#83602) ## About The Pull Request What the title says ## Why It's Good For The Game Being able to understand game mechanics by examining objects is very helpful. ## Changelog :cl: grungussuss fix: added missing context tips for atmos canisters /:cl: * adds missing context tips to atmos canisters --------- Co-authored-by: NovaBot <154629622+NovaBot13@users.noreply.github.com> Co-authored-by: grungussuss <96586172+Sadboysuss@users.noreply.github.com> Co-authored-by: NovaBot13 --- code/modules/atmospherics/machinery/portable/canister.dm | 3 +++ 1 file changed, 3 insertions(+) diff --git a/code/modules/atmospherics/machinery/portable/canister.dm b/code/modules/atmospherics/machinery/portable/canister.dm index 6d4a8ad714a..c5acadcd452 100644 --- a/code/modules/atmospherics/machinery/portable/canister.dm +++ b/code/modules/atmospherics/machinery/portable/canister.dm @@ -103,12 +103,15 @@ /obj/machinery/portable_atmospherics/canister/examine(user) . = ..() . += span_notice("A sticker on its side says MAX SAFE PRESSURE: [siunit_pressure(initial(pressure_limit), 0)]; MAX SAFE TEMPERATURE: [siunit(temp_limit, "K", 0)].") + . += span_notice("The hull is welded together and can be cut apart.") if(internal_cell) . += span_notice("The internal cell has [internal_cell.percent()]% of its total charge.") else . += span_notice("Warning, no cell installed, use a screwdriver to open the hatch and insert one.") if(panel_open) . += span_notice("Hatch open, close it with a screwdriver.") + if(integrity_failure) + . += span_notice("Integrity compromised, repair hull with a welding tool.") // Please keep the canister types sorted // Basic canister per gas below here