From 01a092d7c9feb23289d8827b7b4a951749af45a8 Mon Sep 17 00:00:00 2001 From: Erika Fox <94164348+Erikafox@users.noreply.github.com> Date: Tue, 22 Oct 2024 10:00:56 -0400 Subject: [PATCH] Lets you fax holochips (#3606) ## About The Pull Request as title ## Why It's Good For The Game wireless money transfer... in the year of our space 505fs... unthinkable... ## Changelog :cl: add: You can now fax credit holochips /:cl: --------- Co-authored-by: Erika Fox <94164348+Bjarl@users.noreply.github.com> --- code/modules/paperwork/fax.dm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/code/modules/paperwork/fax.dm b/code/modules/paperwork/fax.dm index 0bf0a3eb51d3..ece23ebbfc81 100644 --- a/code/modules/paperwork/fax.dm +++ b/code/modules/paperwork/fax.dm @@ -31,7 +31,8 @@ /// List of types which should always be allowed to be faxed var/static/list/allowed_types = list( /obj/item/paper, - /obj/item/photo + /obj/item/photo, + /obj/item/holochip, ) /// List of types which should be allowed to be faxed if hacked var/static/list/exotic_types = list( @@ -46,7 +47,6 @@ /obj/item/reagent_containers/food/snacks/pancakes, /obj/item/throwing_star, /obj/item/spacecash, - /obj/item/holochip, /obj/item/card, /obj/item/folder/biscuit )