diff --git a/code/game/objects/items/stacks/medical.dm b/code/game/objects/items/stacks/medical.dm
index c9bf5957c9..ca538c254e 100644
--- a/code/game/objects/items/stacks/medical.dm
+++ b/code/game/objects/items/stacks/medical.dm
@@ -36,11 +36,11 @@
if(affecting.display_name == "head")
if(H.head && istype(H.head,/obj/item/clothing/head/helmet/space))
- user << "\red You can't apply [src] through a hardsuit helmet!"
+ user << "\red You can't apply [src] through [H.head]!"
return 1
else
if(H.wear_suit && istype(H.wear_suit,/obj/item/clothing/suit/space))
- user << "\red You can't apply [src] through a hardsuit!"
+ user << "\red You can't apply [src] through [H.wear_suit]!"
return 1
if(affecting.status & ORGAN_ROBOT)
diff --git a/code/modules/reagents/reagent_containers/syringes.dm b/code/modules/reagents/reagent_containers/syringes.dm
index bb4ee34af4..d93ce04229 100644
--- a/code/modules/reagents/reagent_containers/syringes.dm
+++ b/code/modules/reagents/reagent_containers/syringes.dm
@@ -139,7 +139,7 @@
if(time == 30)
O.show_message(text("\red [] is trying to inject []!", user, target), 1)
else
- O.show_message(text("\red [] begins hunting for an injection port on []'s hardsuit!", user, target), 1)
+ O.show_message(text("\red [] begins hunting for an injection port on []'s suit!", user, target), 1)
if(!do_mob(user, target, time)) return