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 job overalls to the loadout menu #27427

Open
wants to merge 4 commits into
base: master
Choose a base branch
from
Open
Changes from 2 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
22 changes: 22 additions & 0 deletions code/modules/client/preference/loadout/loadout_uniform.dm
Original file line number Diff line number Diff line change
Expand Up @@ -345,6 +345,28 @@
path = /obj/item/clothing/under/rank/cargo/tech/delivery
allowed_roles = list("Quartermaster", "Cargo Technician")

/datum/gear/uniform/overalls
main_typepath = /datum/gear/uniform/overalls

/datum/gear/uniform/overalls/job
main_typepath = /datum/gear/uniform/overalls/job
subtype_selection_cost = FALSE

/datum/gear/uniform/overalls/job/janitor
display_name = "Overalls, janitor"
path = /obj/item/clothing/under/rank/civilian/janitor/overalls
allowed_roles = list("Janitor")

/datum/gear/uniform/overalls/job/cargo
display_name = "Overalls, cargo tech"
path = /obj/item/clothing/under/rank/cargo/tech/overalls
allowed_roles = list("Quartermaster","Cargo Technician")

/datum/gear/uniform/overalls/job/expedition
display_name = "Overalls, expedition"
path = /obj/item/clothing/under/rank/cargo/expedition/overalls
allowed_roles = list("Quartermaster","Explorer")
Screampuff marked this conversation as resolved.
Show resolved Hide resolved

/datum/gear/uniform/sec
main_typepath = /datum/gear/uniform/sec

Expand Down