diff --git a/modular_doppler/modular_quirks/breather/accessories.dm b/modular_doppler/modular_quirks/breather/accessories.dm index 97cfaf183271a..b0f99d0875ff4 100644 --- a/modular_doppler/modular_quirks/breather/accessories.dm +++ b/modular_doppler/modular_quirks/breather/accessories.dm @@ -1,10 +1,9 @@ /obj/item/clothing/accessory/breathing name = "breathing dogtag" - desc = "Dogtag that lists what you breathe." + desc = "A dogtag which labels what kind of gas a person may breathe." icon_state = "allergy" above_suit = FALSE - minimize_when_attached = TRUE - attachment_slot = CHEST + attachment_slot = NONE var/breath_type /obj/item/clothing/accessory/breathing/examine(mob/user) @@ -13,15 +12,15 @@ /obj/item/clothing/accessory/breathing/accessory_equipped(obj/item/clothing/under/uniform, user) . = ..() - RegisterSignal(uniform, COMSIG_ATOM_EXAMINE, PROC_REF(on_examine)) + RegisterSignal(user, COMSIG_ATOM_EXAMINE, PROC_REF(on_examine)) /obj/item/clothing/accessory/breathing/accessory_dropped(obj/item/clothing/under/uniform, user) . = ..() - UnregisterSignal(uniform, COMSIG_ATOM_EXAMINE) + UnregisterSignal(user, COMSIG_ATOM_EXAMINE) /obj/item/clothing/accessory/breathing/proc/on_examine(datum/source, mob/user, list/examine_list) SIGNAL_HANDLER - examine_list += "The dogtag reads: I breathe [breath_type]." + examine_list += "[user.p_Their()] [name] reads: 'I breathe [breath_type]'." // Accessory for Akula species, it makes them wet and happy! :)