Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Adds inteq survival boxes. #3607

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions code/game/objects/items/storage/boxes.dm
Original file line number Diff line number Diff line change
Expand Up @@ -174,6 +174,10 @@
mask_type = /obj/item/clothing/mask/gas/sechailer/balaclava
internal_type = /obj/item/tank/internals/emergency_oxygen/double

/obj/item/storage/box/survival/inteq
mask_type = /obj/item/clothing/mask/gas/sechailer/balaclava/inteq
internal_type = /obj/item/tank/internals/emergency_oxygen/engi

/obj/item/storage/box/survival/frontier
mask_type = null // we spawn in gas masks in frontiersmen bags alongside this, so it isn't nessary
internal_type = /obj/item/tank/internals/emergency_oxygen //frontiersmen dont
Expand Down
2 changes: 1 addition & 1 deletion code/modules/clothing/outfits/factions/inteq.dm
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
faction_icon = "bg_inteq"

uniform = /obj/item/clothing/under/syndicate/inteq
box = /obj/item/storage/box/survival
box = /obj/item/storage/box/survival/inteq

backpack = /obj/item/storage/backpack
satchel = /obj/item/storage/backpack/satchel
Expand Down
Loading