Skip to content

Commit

Permalink
da fix (#21961)
Browse files Browse the repository at this point in the history
  • Loading branch information
JimKil3 authored Aug 12, 2023
1 parent f486710 commit 58f2d4b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions code/datums/spells/alien_spells/plasma_weeds.dm
Original file line number Diff line number Diff line change
Expand Up @@ -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, "<span class='noticealien'>There's already an [weed_name] here.</span>")
to_chat(user, "<span class='noticealien'>There's already \a [weed_name] here.</span>")
revert_cast()
return

Expand All @@ -26,5 +26,5 @@
revert_cast()
return

user.visible_message("<span class='alertalien'>[user] has planted a [weed_name]!</span>")
user.visible_message("<span class='alertalien'>[user] has planted \a [weed_name]!</span>")
new weed_type(T)

0 comments on commit 58f2d4b

Please sign in to comment.