diff --git a/code/modules/mob/living/carbon/human/species/station/vaurca/vaurca.dm b/code/modules/mob/living/carbon/human/species/station/vaurca/vaurca.dm index 6017a688d12..34cc21d87ac 100644 --- a/code/modules/mob/living/carbon/human/species/station/vaurca/vaurca.dm +++ b/code/modules/mob/living/carbon/human/species/station/vaurca/vaurca.dm @@ -134,12 +134,12 @@ default_accent = ACCENT_TTS allowed_accents = list(ACCENT_TTS, ACCENT_ZORA, ACCENT_KLAX, ACCENT_CTHUR) - alterable_internal_organs = list(BP_EYES) + alterable_internal_organs = list(BP_HEART, BP_EYES, BP_LUNGS, BP_STOMACH) /datum/species/bug/before_equip(var/mob/living/carbon/human/H) . = ..() H.gender = NEUTER - var/obj/item/clothing/mask/breath/M = new /obj/item/clothing/mask/breath(H) + var/obj/item/clothing/mask/breath/vaurca/filter/M = new /obj/item/clothing/mask/breath/vaurca/filter(H) if(H.equip_to_slot_or_del(M, slot_wear_mask)) M.autodrobe_no_remove = 1 diff --git a/html/changelogs/desven-filter.yml b/html/changelogs/desven-filter.yml new file mode 100644 index 00000000000..4909614a163 --- /dev/null +++ b/html/changelogs/desven-filter.yml @@ -0,0 +1,7 @@ +author: Desven + +delete-after: True + +changes: + - rscadd: "Vaurca can now select mechanical organs." + - tweak: "Vaurca now spawn with a filter port."