From 82e5064e11fc82017c4c639def0acb2e69dadf22 Mon Sep 17 00:00:00 2001 From: TheFurryFeline <38586851+TheFurryFeline@users.noreply.github.com> Date: Thu, 19 Dec 2019 13:57:35 -0500 Subject: [PATCH] Mimic Grammar. Fixes extra "the"'s. --- code/modules/mob/living/simple_mob/subtypes/vore/mimic.dm | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/code/modules/mob/living/simple_mob/subtypes/vore/mimic.dm b/code/modules/mob/living/simple_mob/subtypes/vore/mimic.dm index 717d00cca95..1a776b4e150 100644 --- a/code/modules/mob/living/simple_mob/subtypes/vore/mimic.dm +++ b/code/modules/mob/living/simple_mob/subtypes/vore/mimic.dm @@ -21,7 +21,7 @@ mimic_active = FALSE if(prob(mimic_chance)) var/mob/living/simple_mob/vore/aggressive/mimic/new_mimic = new(loc, src) - visible_message("The [new_mimic] suddenly growls as it turns out to be a mimic!") + visible_message("[new_mimic] suddenly growls as it turns out to be a mimic!") forceMove(new_mimic) new_mimic.real_crate = src new_mimic.name = name @@ -42,7 +42,7 @@ /obj/structure/closet/crate/mimic/damage(var/damage) if(contents.len) - visible_message("The [src] makes out a crunchy noise as its contents are destroyed!") + visible_message("[src] makes out a crunchy noise as its contents are destroyed!") for(var/obj/O in src.contents) qdel(O) ..() @@ -128,4 +128,4 @@ else new/obj/structure/closet/crate(loc) real_crate = null - qdel(src) \ No newline at end of file + qdel(src)