Skip to content

Commit

Permalink
[MIRROR] adds missing context tips to atmos canisters (#2778) (#3581)
Browse files Browse the repository at this point in the history
* 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 <[email protected]>
Co-authored-by: grungussuss <[email protected]>
Co-authored-by: NovaBot13 <[email protected]>
  • Loading branch information
4 people authored Jun 2, 2024
1 parent e1d31ef commit 35cd306
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions code/modules/atmospherics/machinery/portable/canister.dm
Original file line number Diff line number Diff line change
Expand Up @@ -103,12 +103,15 @@
/obj/machinery/portable_atmospherics/canister/examine(user)
. = ..()
. += span_notice("A sticker on its side says <b>MAX SAFE PRESSURE: [siunit_pressure(initial(pressure_limit), 0)]; MAX SAFE TEMPERATURE: [siunit(temp_limit, "K", 0)]</b>.")
. += span_notice("The hull is <b>welded</b> 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
Expand Down

0 comments on commit 35cd306

Please sign in to comment.