From 6ad39a46f72ff8b252b32c6af129b54a0e37bda7 Mon Sep 17 00:00:00 2001 From: FabianK3 <21039694+FabianK3@users.noreply.github.com> Date: Tue, 10 Feb 2026 00:20:30 +0100 Subject: [PATCH] Bounty paper update (#21820) # Summary This PR updates the bounty paper sheet to a new design. No bounty related content has been added or removed. It now contains a timestamp from printing to make it easier to differentiate between old and new prints. ## Preview Screenshot 2026-02-06 185245 Screenshot 2026-02-06 185252 --------- Signed-off-by: FabianK3 <21039694+FabianK3@users.noreply.github.com> Co-authored-by: Cody Brittain <1779662+Generalcamo@users.noreply.github.com> --- .../programs/civilian/cargo_control.dm | 24 +++++++++++++++---- .../fabiank3-bounty-paper-update.yml | 6 +++++ 2 files changed, 25 insertions(+), 5 deletions(-) create mode 100644 html/changelogs/fabiank3-bounty-paper-update.yml diff --git a/code/modules/modular_computers/file_system/programs/civilian/cargo_control.dm b/code/modules/modular_computers/file_system/programs/civilian/cargo_control.dm index 74f69f033b9..46e1fceb0ff 100644 --- a/code/modules/modular_computers/file_system/programs/civilian/cargo_control.dm +++ b/code/modules/modular_computers/file_system/programs/civilian/cargo_control.dm @@ -224,14 +224,28 @@ computer.visible_message(SPAN_NOTICE("\The [computer] prints out paper.")) if("bounty_print") if(computer && computer.nano_printer) - var/text = "

SCC Cargo Bounties


" + var/text = "" + text += "
" + text += "

SCC Bounty requisition manifest

" + text += "" + text += "
Manifest of requisition requests for the operations department.
Manifest version: [worlddate2text()] [worldtime2text()]" + text += "

" + text += "" for(var/datum/bounty/B in SScargo.bounties_list) if(B.claimed) continue - text += "

[B.name]

" - text += "[B.description]" - text += "" + text += "
[B.name]
[B.description]

Requisitioned: [B.completion_string()]
Payment: [B.reward_string()]
" + text += "

" + text += "" + text += "" + text += "
Powered by Orion Express logistics software.
Faster than light.
" + text += "
" + text += "
This document has been automatically generated based off of current inventory statistics. Under no circumstances should the requisition count or the resulting payment be adjusted by personnel. Payment is automatically credited to the operations department and not towards any individual. Requisitions above the requested count receive no additional payment above the listed values. This manifest is a public read-only version, and can be shared. It does not need to be returned." + text += "
" + text += "

" + text += "" + text += "Generated by OE.SCC.ReqApp 2.4
Manifest form version 5.87, Hash:
456E6A6F79696E6720796F7572207061706572776F726B3F" + text += "
" if(!computer.nano_printer.print_text(text,"paper - Bounties")) to_chat(usr, SPAN_WARNING("Hardware error: Printer was unable to print the file. It may be out of paper.")) return diff --git a/html/changelogs/fabiank3-bounty-paper-update.yml b/html/changelogs/fabiank3-bounty-paper-update.yml new file mode 100644 index 00000000000..693a98793cb --- /dev/null +++ b/html/changelogs/fabiank3-bounty-paper-update.yml @@ -0,0 +1,6 @@ +author: FabianK3 + +delete-after: True + +changes: + - rscadd: "Updated the bounties paper design."