From 58f2d4b18503c84bf8f8010432144bbb3faf5c8b Mon Sep 17 00:00:00 2001
From: JimKil3 <47290811+JimKil3@users.noreply.github.com>
Date: Sat, 12 Aug 2023 13:33:46 -0500
Subject: [PATCH] da fix (#21961)
---
code/datums/spells/alien_spells/plasma_weeds.dm | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/code/datums/spells/alien_spells/plasma_weeds.dm b/code/datums/spells/alien_spells/plasma_weeds.dm
index f1ffc966211..c816475f7ea 100644
--- a/code/datums/spells/alien_spells/plasma_weeds.dm
+++ b/code/datums/spells/alien_spells/plasma_weeds.dm
@@ -12,7 +12,7 @@
/obj/effect/proc_holder/spell/alien_spell/plant_weeds/cast(list/targets, mob/living/carbon/user)
var/turf/T = user.loc
if(locate(weed_type) in T)
- to_chat(user, "There's already an [weed_name] here.")
+ to_chat(user, "There's already \a [weed_name] here.")
revert_cast()
return
@@ -26,5 +26,5 @@
revert_cast()
return
- user.visible_message("[user] has planted a [weed_name]!")
+ user.visible_message("[user] has planted \a [weed_name]!")
new weed_type(T)