From 071ff3e1223b90867e777bb78b4a1f3a7ad369a5 Mon Sep 17 00:00:00 2001 From: RustingWithYou <63625389+RustingWithYou@users.noreply.github.com> Date: Sun, 11 Jun 2023 00:38:23 +1200 Subject: [PATCH] Lets Vaurca select Unathi clothing in loadout (#16239) * Lets Vaurca select Unathi clothing * typo fix --- .../loadout/loadout_xeno/unathi.dm | 16 ++++---- html/changelogs/RustingWithYou - bugzzz.yml | 41 +++++++++++++++++++ 2 files changed, 49 insertions(+), 8 deletions(-) create mode 100644 html/changelogs/RustingWithYou - bugzzz.yml diff --git a/code/modules/client/preference_setup/loadout/loadout_xeno/unathi.dm b/code/modules/client/preference_setup/loadout/loadout_xeno/unathi.dm index a8210f5bc7f..d5477bb879a 100644 --- a/code/modules/client/preference_setup/loadout/loadout_xeno/unathi.dm +++ b/code/modules/client/preference_setup/loadout/loadout_xeno/unathi.dm @@ -4,7 +4,7 @@ regions of Moghes. The forest mantle is exclusively for nobility these days." path = /obj/item/clothing/accessory/poncho/unathimantle cost = 1 - whitelisted = list(SPECIES_UNATHI) + whitelisted = list(SPECIES_UNATHI, SPECIES_VAURCA_WORKER, SPECIES_VAURCA_WARRIOR) sort_category = "Xenowear - Unathi" flags = GEAR_HAS_COLOR_SELECTION @@ -30,7 +30,7 @@ description = "A selection of hide mantles, each showing affiliation with one of the guilds of Moghes." path = /obj/item/clothing/accessory/poncho/unathimantle/hephaestus cost = 1 - whitelisted = list(SPECIES_UNATHI) + whitelisted = list(SPECIES_UNATHI, SPECIES_VAURCA_WORKER, SPECIES_VAURCA_WARRIOR) sort_category = "Xenowear - Unathi" flags = GEAR_HAS_COLOR_SELECTION @@ -53,7 +53,7 @@ display_name = "roughspun robe" path = /obj/item/clothing/suit/unathi/robe cost = 1 - whitelisted = list(SPECIES_UNATHI) + whitelisted = list(SPECIES_UNATHI, SPECIES_VAURCA_WORKER, SPECIES_VAURCA_WARRIOR) sort_category = "Xenowear - Unathi" flags = GEAR_HAS_NAME_SELECTION | GEAR_HAS_DESC_SELECTION | GEAR_HAS_COLOR_SELECTION @@ -66,7 +66,7 @@ display_name = "tzirzi robe" path = /obj/item/clothing/suit/unathi/robe/robe_coat cost = 1 - whitelisted = list(SPECIES_UNATHI) + whitelisted = list(SPECIES_UNATHI, SPECIES_VAURCA_WORKER, SPECIES_VAURCA_WARRIOR) sort_category = "Xenowear - Unathi" /datum/gear/suit/robe_coat/New() @@ -146,7 +146,7 @@ /datum/gear/uniform/unathi display_name = "sinta tunic" path = /obj/item/clothing/under/unathi - whitelisted = list(SPECIES_UNATHI) + whitelisted = list(SPECIES_UNATHI, SPECIES_VAURCA_WORKER, SPECIES_VAURCA_WARRIOR) sort_category = "Xenowear - Unathi" flags = GEAR_HAS_NAME_SELECTION | GEAR_HAS_DESC_SELECTION | GEAR_HAS_COLOR_SELECTION @@ -273,7 +273,7 @@ /datum/gear/uniform/unathi/zazali display_name = "zazali garb" path = /obj/item/clothing/under/unathi/zazali - whitelisted = list(SPECIES_UNATHI) + whitelisted = list(SPECIES_UNATHI, SPECIES_VAURCA_WORKER, SPECIES_VAURCA_WARRIOR) sort_category = "Xenowear - Unathi" flags = GEAR_HAS_COLOR_SELECTION | GEAR_HAS_ADDITIONAL_COLOR_SELECTION @@ -286,7 +286,7 @@ /datum/gear/uniform/unathi/zozo display_name = "zozo top" path = /obj/item/clothing/under/unathi/zozo - whitelisted = list(SPECIES_UNATHI) + whitelisted = list(SPECIES_UNATHI, SPECIES_VAURCA_WORKER, SPECIES_VAURCA_WARRIOR) sort_category = "Xenowear - Unathi" /datum/gear/suit/unathi/wrapping_head @@ -406,7 +406,7 @@ display_name = "gyazo belt" path = /obj/item/clothing/accessory/unathi cost = 1 - whitelisted = list(SPECIES_UNATHI) + whitelisted = list(SPECIES_UNATHI, SPECIES_VAURCA_WORKER, SPECIES_VAURCA_WARRIOR) sort_category = "Xenowear - Unathi" flags = GEAR_HAS_NAME_SELECTION | GEAR_HAS_DESC_SELECTION | GEAR_HAS_COLOR_SELECTION diff --git a/html/changelogs/RustingWithYou - bugzzz.yml b/html/changelogs/RustingWithYou - bugzzz.yml new file mode 100644 index 00000000000..248ae412110 --- /dev/null +++ b/html/changelogs/RustingWithYou - bugzzz.yml @@ -0,0 +1,41 @@ +################################ +# Example Changelog File +# +# Note: This file, and files beginning with ".", and files that don't end in ".yml" will not be read. If you change this file, you will look really dumb. +# +# Your changelog will be merged with a master changelog. (New stuff added only, and only on the date entry for the day it was merged.) +# When it is, any changes listed below will disappear. +# +# Valid Prefixes: +# bugfix +# wip (For works in progress) +# tweak +# soundadd +# sounddel +# rscadd (general adding of nice things) +# rscdel (general deleting of nice things) +# imageadd +# imagedel +# maptweak +# spellcheck (typo fixes) +# experiment +# balance +# admin +# backend +# security +# refactor +################################# + +# Your name. +author: RustingWithYou + +# Optional: Remove this file after generating master changelog. Useful for PR changelogs that won't get used again. +delete-after: True + +# Any changes you've made. See valid prefix list above. +# INDENT WITH TWO SPACES. NOT TABS. SPACES. +# SCREW THIS UP AND IT WON'T WORK. +# Also, all entries are changed into a single [] after a master changelog generation. Just remove the brackets when you add new entries. +# Please surround your changes in double quotes ("), as certain characters otherwise screws up compiling. The quotes will not show up in the changelog. +changes: + - tweak: "Allows Vaurca to select some Unathi clothing in loadout."