mirror of
https://github.com/Aurorastation/Aurora.3.git
synced 2026-08-23 21:12:24 +01:00
Bug Mask Bug Fix (#9588)
This commit is contained in:
@@ -61,7 +61,8 @@
|
||||
/datum/outfit/admin/ert/kataphract/klax/post_equip(mob/living/carbon/human/H, visualsOnly = FALSE)
|
||||
if(H?.wear_mask && H.species.has_organ["phoron reserve tank"])
|
||||
var/obj/item/organ/vaurca/preserve/preserve = H.internal_organs_by_name["phoron reserve tank"]
|
||||
H.internals = preserve
|
||||
H.internal = preserve
|
||||
H.internals.icon_state = "internal1"
|
||||
|
||||
var/uniform_colour = pick("#42b360", "#b68029", "#5574c2")
|
||||
if(H?.w_uniform)
|
||||
|
||||
@@ -6,12 +6,20 @@
|
||||
l_ear = /obj/item/device/radio/headset/legion
|
||||
shoes = /obj/item/clothing/shoes/swat/ert
|
||||
gloves = /obj/item/clothing/gloves/swat/ert
|
||||
glasses = /obj/item/clothing/glasses/sunglasses/aviator
|
||||
glasses = /obj/item/clothing/glasses/sunglasses/aviator
|
||||
back = /obj/item/storage/backpack/legion
|
||||
id = /obj/item/card/id/distress/legion
|
||||
|
||||
backpack_contents = null
|
||||
|
||||
/datum/outfit/admin/ert/legion/post_equip(mob/living/carbon/human/H, visualsOnly = FALSE)
|
||||
. = ..()
|
||||
if(isvaurca(H))
|
||||
H.equip_to_slot_or_del(new /obj/item/clothing/mask/breath/vaurca/filter(H), slot_wear_mask)
|
||||
var/obj/item/organ/vaurca/preserve/preserve = H.internal_organs_by_name["phoron reserve tank"]
|
||||
H.internal = preserve
|
||||
H.internals.icon_state = "internal1"
|
||||
|
||||
/datum/outfit/admin/ert/legion/get_id_access()
|
||||
return get_distress_access()
|
||||
|
||||
|
||||
Reference in New Issue
Block a user