From 6b8436558efbf9e13e5d09501d743dfc98130d95 Mon Sep 17 00:00:00 2001 From: Kyle Spier-Swenson Date: Mon, 30 Nov 2015 22:47:15 -0800 Subject: [PATCH] Deleted 1 too many lines --- code/modules/json/json_writer.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/modules/json/json_writer.dm b/code/modules/json/json_writer.dm index b339dd41870..45360c774d2 100644 --- a/code/modules/json/json_writer.dm +++ b/code/modules/json/json_writer.dm @@ -2,7 +2,7 @@ json_writer/var/use_cache = 0 json_writer/proc/WriteObject(list/L) if(use_cache && L["__json_cache"]) return L["__json_cache"] - + var/i = 1 . = "" for(var/k in L) . += text("\"[]\":[][]", k, write(L[k]), (i++ < L.len ? "," : ""))