From 1e6963f1c857e482166ee7007a1638b4d22f3c78 Mon Sep 17 00:00:00 2001 From: John-Michael O'Brien Date: Mon, 7 Jul 2014 22:57:37 -0600 Subject: [PATCH] Update PDA.dm Patched the comment to match the actual, final behavior (Doh!) --- code/game/objects/items/devices/PDA/PDA.dm | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/code/game/objects/items/devices/PDA/PDA.dm b/code/game/objects/items/devices/PDA/PDA.dm index eb8884fca79..99617b192b7 100755 --- a/code/game/objects/items/devices/PDA/PDA.dm +++ b/code/game/objects/items/devices/PDA/PDA.dm @@ -1186,8 +1186,9 @@ var/global/list/obj/item/device/pda/PDAs = list() user << "\blue Tank is empty!" if (!scanmode && istype(A, /obj/item/weapon/paper) && owner) - // JMO 20140705: Makes scanned document show up in edit window if you edit notes. Not pretty for formatted documents, - // as this will clobber the HTML, but at least it lets you scan a document and add notes after the end. + // JMO 20140705: Makes scanned document show up properly in the notes. Not pretty for formatted documents, + // as this will clobber the HTML, but at least it lets you scan a document. You can restore the original + // notes by editing the note again. (Was going to allow you to edit, but scanned documents are too long.) var/raw_scan = (A:info) var/formatted_scan = "" // Scrub out the tags (replacing a few formatting ones along the way)