From bec3b6bf6e8d6477d16152b853ecc45411c9b7d0 Mon Sep 17 00:00:00 2001 From: Aurorablade Date: Thu, 6 Aug 2015 23:57:34 -0400 Subject: [PATCH] Typo and color macro fix --- code/game/gamemodes/wizard/artefact.dm | 4 ++-- code/modules/mob/living/simple_animal/slaughter/slaughter.dm | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/code/game/gamemodes/wizard/artefact.dm b/code/game/gamemodes/wizard/artefact.dm index 12c041d6aed..7e16791cf74 100644 --- a/code/game/gamemodes/wizard/artefact.dm +++ b/code/game/gamemodes/wizard/artefact.dm @@ -210,6 +210,6 @@ hitsound = 'sound/items/welder2.ogg' /obj/item/weapon/scrying/attack_self(mob/user as mob) - user << "\blue You can see...everything!" - visible_message("\red [user] stares into [src], their eyes glazing over.") + user << " You can see...everything!" + visible_message("[user] stares into [src], their eyes glazing over.") user.ghostize(1) diff --git a/code/modules/mob/living/simple_animal/slaughter/slaughter.dm b/code/modules/mob/living/simple_animal/slaughter/slaughter.dm index 1332d75b1bf..a03b9b5173b 100644 --- a/code/modules/mob/living/simple_animal/slaughter/slaughter.dm +++ b/code/modules/mob/living/simple_animal/slaughter/slaughter.dm @@ -176,8 +176,8 @@ if(target && target.current) targetname = target.current.real_name var/list/explanationTexts = list("Attempt to make your presence unknown to the crew.", \ - "Kill or Dystroy all Janitors or Sanitation bots.", \ - "Drive [targetname] insane." + "Kill or Destroy all Janitors or Sanitation bots.", \ + "Drive [targetname] insane with demonic whispering." ) explanation_text = pick(explanationTexts)