From adde619a06b705fe8b9f4b0c688cfb83a2084e33 Mon Sep 17 00:00:00 2001 From: NicholasDV Date: Sun, 9 Jun 2013 03:40:27 -0400 Subject: [PATCH] Fixes an issue in grammar! Specifically, the way that it was coded made it so that the word the would appear twice. There... really wasn't a way to fix that in a way that would effect a lot more things, that I could find. As a result, I simply reworded it so that it can work with or without the word, 'the'. closes #2771 --- code/game/mecha/mech_fabricator.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/game/mecha/mech_fabricator.dm b/code/game/mecha/mech_fabricator.dm index 58824777d17..56c9f74f49f 100644 --- a/code/game/mecha/mech_fabricator.dm +++ b/code/game/mecha/mech_fabricator.dm @@ -368,7 +368,7 @@ src.desc = initial(src.desc) if(being_built) src.being_built.Move(get_step(src,SOUTH)) - src.visible_message("\icon[src] [src] beeps, \"The [src.being_built] is complete\".") + src.visible_message("\icon[src] [src] beeps, \"The following has been completed: [src.being_built] is built\".") src.being_built = null src.updateUsrDialog() return 1