From e2104d886a70cfe484f08fb761c8d97ed2a5915a Mon Sep 17 00:00:00 2001 From: Erki Date: Sun, 18 Aug 2019 00:15:42 +0300 Subject: [PATCH] Fixes #6875 (#6878) --- code/modules/background/citizenship/vaurca.dm | 7 +++++++ html/changelogs/skull132-6875.yml | 5 +++++ 2 files changed, 12 insertions(+) create mode 100644 html/changelogs/skull132-6875.yml diff --git a/code/modules/background/citizenship/vaurca.dm b/code/modules/background/citizenship/vaurca.dm index bb49e2c3560..4c5c8d224d8 100644 --- a/code/modules/background/citizenship/vaurca.dm +++ b/code/modules/background/citizenship/vaurca.dm @@ -41,6 +41,10 @@ /datum/outfit/job/representative/consular/zora/post_equip(mob/living/carbon/human/H, visualsOnly = FALSE) if(!visualsOnly) if(isvaurca(H)) + var/r = H.r_skin + var/g = H.g_skin + var/b = H.b_skin + H.set_species("Vaurca Breeder") H.unEquip(H.back) @@ -51,3 +55,6 @@ H.equip_to_slot_or_del(new /obj/item/clothing/shoes/vaurca/breeder(H), slot_shoes) H.equip_to_slot_or_del(new /obj/item/clothing/suit/vaurca/breeder(H), slot_wear_suit) H.equip_to_slot_or_del(new /obj/item/weapon/storage/box/tcfl_pamphlet(H), slot_in_backpack) + + H.change_skin_color(r, g, b) + H.update_dna() diff --git a/html/changelogs/skull132-6875.yml b/html/changelogs/skull132-6875.yml new file mode 100644 index 00000000000..fd7708e53e7 --- /dev/null +++ b/html/changelogs/skull132-6875.yml @@ -0,0 +1,5 @@ +author: Skull132 +delete-after: true + +changes: + - bugfix: "Fixes the breeder vaurca having to ask for hot pink colours from admins."