diff --git a/code/modules/clothing/under/_under.dm b/code/modules/clothing/under/_under.dm index 226346fc812..4da6f8e33ac 100644 --- a/code/modules/clothing/under/_under.dm +++ b/code/modules/clothing/under/_under.dm @@ -379,10 +379,7 @@ if(SENSOR_COORDS) to_chat(user_mob, span_notice("Your suit will now report your exact vital lifesigns as well as your coordinate position.")) - if(ishuman(loc)) - var/mob/living/carbon/human/H = loc - if(H.w_uniform == src) - H.update_suit_sensors() + update_wearer_status() /obj/item/clothing/under/item_ctrl_click(mob/user) if(!can_toggle_sensors(user)) @@ -390,6 +387,7 @@ sensor_mode = SENSOR_COORDS balloon_alert(user, "set to tracking") + update_wearer_status() return CLICK_ACTION_SUCCESS /// Checks if the toggler is allowed to toggle suit sensors currently