diff --git a/code/modules/research/xenobiology/crossbreeding/_potions.dm b/code/modules/research/xenobiology/crossbreeding/_potions.dm
index 89fdd59adff..d4a468c11b3 100644
--- a/code/modules/research/xenobiology/crossbreeding/_potions.dm
+++ b/code/modules/research/xenobiology/crossbreeding/_potions.dm
@@ -41,24 +41,24 @@ Slimecrossing Potions
/obj/item/slimepotion/peacepotion/attack(mob/living/M, mob/user)
if(!isliving(M) || M.stat == DEAD)
- to_chat(user, "The pacification potion only works on the living.")
+ to_chat(user, "\The [src] only works on the living.")
return ..()
if(istype(M, /mob/living/simple_animal/hostile/megafauna))
- to_chat(user, "The pacification potion does not work on beings of pure evil!")
+ to_chat(user, "\The [src] does not work on beings of pure evil!")
return ..()
if(M != user)
- M.visible_message("[user] starts to feed [M] a pacification potion!",
- "[user] starts to feed you a pacification!")
+ M.visible_message("[user] starts to feed [M] \a [src]!",
+ "[user] starts to feed you \a [src]!")
else
- M.visible_message("[user] starts to drink the pacification potion!",
- "You start to drink the pacification potion!")
+ M.visible_message("[user] starts to drink \the [src]!",
+ "You start to drink \the [src]!")
if(!do_after(user, 100, target = M))
return
if(M != user)
- to_chat(user, "You feed [M] the pacification potion!")
+ to_chat(user, "You feed [M] \the [src]!")
else
- to_chat(user, "You drink the pacification potion!")
+ to_chat(user, "You drink \the [src]!")
if(isanimal(M))
ADD_TRAIT(M, TRAIT_PACIFISM, MAGIC_TRAIT)
else if(iscarbon(M))