diff --git a/code/_onclick/hud/screen_objects.dm b/code/_onclick/hud/screen_objects.dm index 2aa1a3e05d..15d1d3b717 100644 --- a/code/_onclick/hud/screen_objects.dm +++ b/code/_onclick/hud/screen_objects.dm @@ -291,7 +291,7 @@ icon_state = "internal0" else if(!C.getorganslot(ORGAN_SLOT_BREATHING_TUBE)) - if(HAS_TRAIT(src, TRAIT_NO_INTERNALS)) + if(HAS_TRAIT(C, TRAIT_NO_INTERNALS)) to_chat(C, "Due to cumbersome equipment or anatomy, you are currently unable to use internals!") return var/obj/item/clothing/check diff --git a/code/game/objects/items/tanks/tanks.dm b/code/game/objects/items/tanks/tanks.dm index 9f90b8af3a..7157103f14 100644 --- a/code/game/objects/items/tanks/tanks.dm +++ b/code/game/objects/items/tanks/tanks.dm @@ -33,7 +33,7 @@ H.update_internals_hud_icon(0) else if(!H.getorganslot(ORGAN_SLOT_BREATHING_TUBE)) - if(HAS_TRAIT(src, TRAIT_NO_INTERNALS)) + if(HAS_TRAIT(H, TRAIT_NO_INTERNALS)) to_chat(H, "Due to cumbersome equipment or anatomy, you are currently unable to use internals!") return var/obj/item/clothing/check