Skip to content

Commit

Permalink
[MIRROR] Allows faxing of paintings (#1775) (#2711)
Browse files Browse the repository at this point in the history
* Allows faxing of paintings (#82384)

## About The Pull Request

Adds painting canvases to the allowed list of fax machine input/outputs.

## Why It's Good For The Game

A picture is worth 1000 words; now you can depict the captain as the
soyjack and yourself as the chad.
They're flat means of visual communication... I will admit it's maybe a
stretch that you could fit the larger canvases in but let's imagine that
the machine folds and unfolds them.

## Changelog

:cl:
add: You can now fax painted canvases in order to send memes to each
other.
/:cl:

* Allows faxing of paintings

---------

Co-authored-by: NovaBot <[email protected]>
Co-authored-by: Jacquerel <[email protected]>
  • Loading branch information
3 people authored Apr 3, 2024
1 parent 72db7e3 commit bf56900
Showing 1 changed file with 8 additions and 7 deletions.
15 changes: 8 additions & 7 deletions code/modules/paperwork/fax.dm
Original file line number Diff line number Diff line change
Expand Up @@ -33,22 +33,23 @@ GLOBAL_VAR_INIT(nt_fax_department, pick("NT HR Department", "NT Legal Department
var/list/fax_history = list()
/// List of types which should always be allowed to be faxed
var/static/list/allowed_types = list(
/obj/item/canvas,
/obj/item/paper,
/obj/item/photo,
/obj/item/tcgcard
/obj/item/tcgcard,
)
/// List of types which should be allowed to be faxed if hacked
var/static/list/exotic_types = list(
/obj/item/card,
/obj/item/folder/biscuit,
/obj/item/food/breadslice,
/obj/item/food/pizza/flatbread,
/obj/item/food/pizzaslice,
/obj/item/food/root_flatbread,
/obj/item/food/pizza/flatbread,
/obj/item/food/breadslice,
/obj/item/food/salami,
/obj/item/throwing_star,
/obj/item/stack/spacecash,
/obj/item/holochip,
/obj/item/card,
/obj/item/folder/biscuit,
/obj/item/stack/spacecash,
/obj/item/throwing_star,
)
/// List with a fake-networks(not a fax actually), for request manager.
var/list/special_networks = list(
Expand Down

0 comments on commit bf56900

Please sign in to comment.