Skip to content

Commit

Permalink
tweak: poncho loadout update (ss220-space#4910)
Browse files Browse the repository at this point in the history
tweak: poncho update
  • Loading branch information
ROdenFL authored Apr 20, 2024
1 parent d5b6dfc commit 86a055b
Showing 1 changed file with 16 additions and 1 deletion.
17 changes: 16 additions & 1 deletion code/modules/client/preference/loadout/loadout_neck.dm
Original file line number Diff line number Diff line change
Expand Up @@ -133,9 +133,24 @@

//Ponchos
/datum/gear/neck/poncho
display_name = "poncho, classic"
display_name = "poncho, select"
path = /obj/item/clothing/neck/poncho

/datum/gear/neck/poncho/New()
. = ..()
var/list/ponchos = list(/obj/item/clothing/neck/poncho,
/obj/item/clothing/neck/poncho/red,
/obj/item/clothing/neck/poncho/orange,
/obj/item/clothing/neck/poncho/yellow,
/obj/item/clothing/neck/poncho/green,
/obj/item/clothing/neck/poncho/blue,
/obj/item/clothing/neck/poncho/purple,
/obj/item/clothing/neck/poncho/white,
/obj/item/clothing/neck/poncho/black,
/obj/item/clothing/neck/poncho/mime,
/obj/item/clothing/neck/poncho/rainbow,)
gear_tweaks += new /datum/gear_tweak/path(ponchos, src, TRUE)

/datum/gear/neck/poncho/security
display_name = "poncho, corporate"
path = /obj/item/clothing/neck/poncho/security
Expand Down

0 comments on commit 86a055b

Please sign in to comment.