mirror of
https://github.com/Bubberstation/Bubberstation.git
synced 2026-08-20 03:30:01 +01:00
## About The Pull Request Not really sure why these were there storing the lists in memory permanently, when these just get consumed anyway. People copy paste them all over it seems so I'm going to put a stop to that. ## Why It's Good For The Game Cleans up like 7 years of cargo cult. ## Changelog Not player-facing
16 lines
562 B
Plaintext
16 lines
562 B
Plaintext
// This file contains all boxes used by the Cargo department and its purpose on the station.
|
|
|
|
/obj/item/storage/box/shipping
|
|
name = "box of shipping supplies"
|
|
desc = "Contains several scanners and labelers for shipping things. Wrapping Paper not included."
|
|
illustration = "shipping"
|
|
|
|
/obj/item/storage/box/shipping/PopulateContents()
|
|
var/list/items_inside = list(
|
|
/obj/item/dest_tagger = 1,
|
|
/obj/item/universal_scanner = 1,
|
|
/obj/item/stack/package_wrap/small = 2,
|
|
/obj/item/stack/wrapping_paper/small = 1,
|
|
)
|
|
generate_items_inside(items_inside,src)
|