From e159cf04989e6ba51bb51a636ba6e1bb42b8ed01 Mon Sep 17 00:00:00 2001 From: phil235 Date: Mon, 26 Jan 2015 20:06:07 +0100 Subject: [PATCH] Fixes typo in the message the AI gets when attempting to print a picture when it has none. --- code/modules/paperwork/photocopier.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/modules/paperwork/photocopier.dm b/code/modules/paperwork/photocopier.dm index 8f9bb4c1fc6..a55e0c96a05 100644 --- a/code/modules/paperwork/photocopier.dm +++ b/code/modules/paperwork/photocopier.dm @@ -188,7 +188,7 @@ var/datum/picture/selection var/mob/living/silicon/ai/tempAI = usr if(tempAI.aicamera.aipictures.len == 0) - usr << "No images saved" + usr << "No images saved" return for(var/datum/picture/t in tempAI.aicamera.aipictures) nametemp += t.fields["name"]