From ecbd387bd77bcf0aa164abf8b3d2427057b4d391 Mon Sep 17 00:00:00 2001 From: Tofa01 Date: Mon, 27 Feb 2017 08:34:17 +1100 Subject: [PATCH] Fixes a grammar issue (#24436) --- code/modules/mob/mob_helpers.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/modules/mob/mob_helpers.dm b/code/modules/mob/mob_helpers.dm index 9ec624c37d0..a42cc4a5d0f 100644 --- a/code/modules/mob/mob_helpers.dm +++ b/code/modules/mob/mob_helpers.dm @@ -421,7 +421,7 @@ var/static/regex/firstname = new("^\[^\\s-\]+") //First word before whitespace o user.visible_message("[user] has fixed some of the [dam ? "dents on" : "burnt wires in"] [H]'s [affecting].", "You fix some of the [dam ? "dents on" : "burnt wires in"] [H]'s [affecting].") return 1 //successful heal else - user << "[H]'s [affecting] is already in good condition!" + user << "[affecting] is already in good condition!" /proc/IsAdminGhost(var/mob/user)