From 4f56a0ea1214f422482eab8ca16d60904ce27ff1 Mon Sep 17 00:00:00 2001 From: Crazylemon64 Date: Fri, 26 Aug 2016 15:54:13 -0700 Subject: [PATCH] VV now uses .Join to form its HTML, making it much faster --- code/datums/datumvars.dm | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/code/datums/datumvars.dm b/code/datums/datumvars.dm index f990ac7f3a1..673f76971eb 100644 --- a/code/datums/datumvars.dm +++ b/code/datums/datumvars.dm @@ -12,7 +12,7 @@ var/title = "" - var/body = "" + var/list/body = list() if(!D) return if(istype(D, /atom)) @@ -319,7 +319,7 @@ body } "} html += "" - html += body + html += body.Join("") html += {"