diff --git a/code/modules/research/xenobiology/crossbreeding/_potions.dm b/code/modules/research/xenobiology/crossbreeding/_potions.dm index d4a468c11b3..1fb17ea4d1f 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 [src] only works on the living.") + to_chat(user, "[src] only works on the living.") return ..() if(istype(M, /mob/living/simple_animal/hostile/megafauna)) - to_chat(user, "\The [src] does not work on beings of pure evil!") + to_chat(user, "[src] does not work on beings of pure evil!") return ..() if(M != user) - M.visible_message("[user] starts to feed [M] \a [src]!", - "[user] starts to feed you \a [src]!") + M.visible_message("[user] starts to feed [M] [src]!", + "[user] starts to feed you [src]!") else - M.visible_message("[user] starts to drink \the [src]!", - "You start to drink \the [src]!") + M.visible_message("[user] starts to drink [src]!", + "You start to drink [src]!") if(!do_after(user, 100, target = M)) return if(M != user) - to_chat(user, "You feed [M] \the [src]!") + to_chat(user, "You feed [M] [src]!") else - to_chat(user, "You drink \the [src]!") + to_chat(user, "You drink [src]!") if(isanimal(M)) ADD_TRAIT(M, TRAIT_PACIFISM, MAGIC_TRAIT) else if(iscarbon(M))