From 2b5f86e062f71c8f52a8fc36173eb491101cbeee Mon Sep 17 00:00:00 2001 From: Markolie Date: Wed, 19 Aug 2015 22:06:55 +0200 Subject: [PATCH] Single apostrophe instead of double --- code/game/mecha/mecha_control_console.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/game/mecha/mecha_control_console.dm b/code/game/mecha/mecha_control_console.dm index 84c896a0ab3..ce44f2e59b1 100644 --- a/code/game/mecha/mecha_control_console.dm +++ b/code/game/mecha/mecha_control_console.dm @@ -81,7 +81,7 @@ var/obj/mecha/M = src.loc var/list/answer[0] answer["reference"] = "\ref[src]" - answer["name"] = sanitize(replacetext(M.name,"\"","")) // Apostrophes break JSON + answer["name"] = sanitize(replacetext(M.name,"\"","'")) // Double apostrophes break JSON if(M.cell) answer["cell"] = 1 answer["cell_capacity"] = M.cell.maxcharge