From 44fd6ec81e2292d834ec506dddf9fdd7157b6bd2 Mon Sep 17 00:00:00 2001 From: Waterpig <49160555+Majkl-J@users.noreply.github.com> Date: Sat, 17 May 2025 07:41:39 +0200 Subject: [PATCH] Adds a tooltip to airlocks with papers because I was mildly inconvenienced by a rude message on my door once (#90987) ## About The Pull Request and why it's good for the game See name. ![image](https://github.com/user-attachments/assets/0f023a29-f995-410a-b76c-0f539df8babf) ## Why It's Good For The Game It's literally the bare minimum QoL for something that isn't stated anywhere but the code directly and I enjoy not having to alt tab and code dive for the smallest, nichest interaction. ## Changelog :cl: qol: Notes on airlocks now tell you how they can be removed on examine /:cl: --------- Co-authored-by: John Willard <53777086+JohnFulpWillard@users.noreply.github.com> --- code/game/machinery/doors/airlock.dm | 1 + 1 file changed, 1 insertion(+) diff --git a/code/game/machinery/doors/airlock.dm b/code/game/machinery/doors/airlock.dm index b116a687026..69bdbd563f8 100644 --- a/code/game/machinery/doors/airlock.dm +++ b/code/game/machinery/doors/airlock.dm @@ -648,6 +648,7 @@ else . += "There's a [note.name] pinned to the front..." . += note.examine(user) + . += span_notice("The attached [note.name] can be taken down with some [EXAMINE_HINT("wirecutters")].") if(seal) . += "It's been braced with \a [seal]." if(welded)