mirror of
https://github.com/Aurorastation/Aurora.3.git
synced 2026-08-22 12:29:46 +01:00
fixes unselectable sk'akh robes (#18653)
* shits, dies, kills self * Update code/modules/client/preference_setup/loadout/items/xeno/unathi.dm Co-authored-by: SleepyGemmy <99297919+SleepyGemmy@users.noreply.github.com> Signed-off-by: Matt Atlas <mattiathebest2000@hotmail.it> * Update code/modules/client/preference_setup/loadout/items/xeno/unathi.dm Co-authored-by: SleepyGemmy <99297919+SleepyGemmy@users.noreply.github.com> Signed-off-by: Matt Atlas <mattiathebest2000@hotmail.it> --------- Signed-off-by: Matt Atlas <mattiathebest2000@hotmail.it> Co-authored-by: Matt Atlas <mattiathebest2000@hotmail.it> Co-authored-by: SleepyGemmy <99297919+SleepyGemmy@users.noreply.github.com>
This commit is contained in:
co-authored by
SleepyGemmy
Matt Atlas
parent
f0b7d09620
commit
533db93a7e
@@ -458,19 +458,20 @@
|
||||
cards["ouerea passcard"] = /obj/item/clothing/accessory/badge/passcard/ouerea
|
||||
gear_tweaks += new /datum/gear_tweak/path(cards)
|
||||
|
||||
/datum/gear/uniform/skakh
|
||||
display_name = "sk'akh robes selection"
|
||||
/datum/gear/uniform/unathi/skakh
|
||||
display_name = "ska'kh robes selection"
|
||||
path = /obj/item/clothing/under/unathi/skakh
|
||||
cost = 1
|
||||
whitelisted = list(SPECIES_UNATHI)
|
||||
sort_category = "Xenowear - Unathi"
|
||||
allowed_roles = list("Chaplain")
|
||||
flags = GEAR_HAS_NAME_SELECTION | GEAR_HAS_DESC_SELECTION
|
||||
|
||||
/datum/gear/uniform/skakh/New()
|
||||
/datum/gear/uniform/unathi/skakh/New()
|
||||
..()
|
||||
var/list/skakh = list()
|
||||
skakh["Sk'akh priest's robes"] = /obj/item/clothing/under/unathi/skakh
|
||||
skakh["Sk'akh fisher's robes"] = /obj/item/clothing/under/unathi/skakh/fisher
|
||||
skakh["Sk'akh healer's robes"] = /obj/item/clothing/under/unathi/skakh/healer
|
||||
skakh["Sk'akh warrior's robes"] = /obj/item/clothing/under/unathi/skakh/warrior
|
||||
gear_tweaks += new /datum/gear_tweak/path(skakh)
|
||||
var/list/robes = list()
|
||||
robes["Sk'akh priest's robes"] = /obj/item/clothing/under/unathi/skakh
|
||||
robes["Sk'akh fisher's robes"] = /obj/item/clothing/under/unathi/skakh/fisher
|
||||
robes["Sk'akh healer's robes"] = /obj/item/clothing/under/unathi/skakh/healer
|
||||
robes["Sk'akh warrior's robes"] = /obj/item/clothing/under/unathi/skakh/warrior
|
||||
gear_tweaks += new /datum/gear_tweak/path(robes)
|
||||
|
||||
Reference in New Issue
Block a user