From 34875a3ab9f18c61180833ea3eacbb315d7b7a21 Mon Sep 17 00:00:00 2001 From: Casper3667 <8396443+Casper3667@users.noreply.github.com> Date: Mon, 17 Nov 2025 20:18:26 +0100 Subject: [PATCH] Make consoles print paper into the users hand (#21581) As per the title, printed papers from consoles are now put into the users hand instead of on the floor. --- code/modules/modular_computers/hardware/nano_printer.dm | 1 + html/changelogs/PaperGiving.yml | 6 ++++++ 2 files changed, 7 insertions(+) create mode 100644 html/changelogs/PaperGiving.yml diff --git a/code/modules/modular_computers/hardware/nano_printer.dm b/code/modules/modular_computers/hardware/nano_printer.dm index 2f4a85f94f5..159f3f4fd71 100644 --- a/code/modules/modular_computers/hardware/nano_printer.dm +++ b/code/modules/modular_computers/hardware/nano_printer.dm @@ -29,6 +29,7 @@ P.color = paper_color stored_paper-- + usr.put_in_hands(P, TRUE) return P /obj/item/computer_hardware/nano_printer/attackby(obj/item/attacking_item, mob/user) diff --git a/html/changelogs/PaperGiving.yml b/html/changelogs/PaperGiving.yml new file mode 100644 index 00000000000..2c5b386a714 --- /dev/null +++ b/html/changelogs/PaperGiving.yml @@ -0,0 +1,6 @@ +author: TheGreyWolf + +delete-after: True + +changes: + - rscadd: "Papers printed from consoles now try to put it in the hand before putting it on the floor."