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

A couple of loadout fixes (Mostly Cloaks) #9185

Merged
merged 1 commit into from
Aug 5, 2023
Merged
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
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@
/datum/gear/toy
display_name = "toy selection"
description = "Choose from a number of toys."
path = /obj/item/toy/
path = /obj/item/toy/blink

/datum/gear/toy/New()
..()
Expand Down
14 changes: 5 additions & 9 deletions code/modules/client/preference_setup/loadout/loadout_suit.dm
Original file line number Diff line number Diff line change
Expand Up @@ -235,41 +235,37 @@
)
gear_tweaks += new/datum/gear_tweak/path(coattype)

//Half cloak
/datum/gear/suit/cloak_half
display_name = "cloak, half, colorable"
path = /obj/item/clothing/accessory/storage/poncho/roles/cloak/half

/datum/gear/suit/cloak_half/New()
gear_tweaks += gear_tweak_free_color_choice

//Shoulder cloak
/datum/gear/suit/cloak_shoulder
display_name = "cloak, left shoulder (colorable)"
path = /obj/item/clothing/accessory/storage/poncho/roles/cloak/shoulder

/datum/gear/suit/cloak_shoulder/New()
..()
gear_tweaks += gear_tweak_free_color_choice

/datum/gear/suit/cloak_shoulder_right
display_name = "cloak, right shoulder (colorable)"
path = /obj/item/clothing/accessory/storage/poncho/roles/cloak/shoulder/right

/datum/gear/suit/cloak_shoulder_right/New()
..()
gear_tweaks += gear_tweak_free_color_choice

/datum/gear/suit/capelet
display_name = "cloak, capelet (colorable)"
path = /obj/item/clothing/accessory/storage/poncho/roles/cloak/capelet

/datum/gear/suit/capelet/New()
..()
gear_tweaks += gear_tweak_free_color_choice

/datum/gear/suit/roughcloak
display_name = "cloak, rough (colorable)"
display_name = "cloak, rough halfcloak (colorable)"
path = /obj/item/clothing/accessory/storage/poncho/roles/cloak/half

/datum/gear/suit/roughcloak/New()
..()
gear_tweaks += gear_tweak_free_color_choice

/datum/gear/suit/unathi_robe
Expand Down