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."