diff --git a/code/_onclick/hud/screen_objects.dm b/code/_onclick/hud/screen_objects.dm
index 45bfbeb4fa..1bfb801730 100644
--- a/code/_onclick/hud/screen_objects.dm
+++ b/code/_onclick/hud/screen_objects.dm
@@ -265,26 +265,26 @@
var/obj/item/I = C.is_holding_item_of_type(/obj/item/tank)
if(I)
- to_chat(C, "You are now running on internals from the [I] on your [C.get_held_index_name(C.get_held_index_of_item(I))].")
+ to_chat(C, "You are now running on internals from [I] in your [C.get_held_index_name(C.get_held_index_of_item(I))].")
C.internal = I
else if(ishuman(C))
var/mob/living/carbon/human/H = C
if(istype(H.s_store, /obj/item/tank))
- to_chat(H, "You are now running on internals from the [H.s_store] on your [H.wear_suit].")
+ to_chat(H, "You are now running on internals from [H.s_store] on your [H.wear_suit.name].")
H.internal = H.s_store
else if(istype(H.belt, /obj/item/tank))
- to_chat(H, "You are now running on internals from the [H.belt] on your belt.")
+ to_chat(H, "You are now running on internals from [H.belt] on your belt.")
H.internal = H.belt
else if(istype(H.l_store, /obj/item/tank))
- to_chat(H, "You are now running on internals from the [H.l_store] in your left pocket.")
+ to_chat(H, "You are now running on internals from [H.l_store] in your left pocket.")
H.internal = H.l_store
else if(istype(H.r_store, /obj/item/tank))
- to_chat(H, "You are now running on internals from the [H.r_store] in your right pocket.")
+ to_chat(H, "You are now running on internals from [H.r_store] in your right pocket.")
H.internal = H.r_store
//Separate so CO2 jetpacks are a little less cumbersome.
if(!C.internal && istype(C.back, /obj/item/tank))
- to_chat(C, "You are now running on internals from the [C.back] on your back.")
+ to_chat(C, "You are now running on internals from [C.back] on your back.")
C.internal = C.back
if(C.internal)