From 21818a5b5f27eb91e570d21152e16221c97d05a3 Mon Sep 17 00:00:00 2001 From: Kyle Spier-Swenson Date: Tue, 25 Apr 2017 12:26:33 -0700 Subject: [PATCH] lowers max list size in vv since you can vv lists now, this doesn't need to be as big. --- code/datums/datumvars.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/datums/datumvars.dm b/code/datums/datumvars.dm index d49b1e227a0..628ff520aa5 100644 --- a/code/datums/datumvars.dm +++ b/code/datums/datumvars.dm @@ -445,7 +445,7 @@ var/list/L = value var/list/items = list() - if (L.len > 0 && !(name == "underlays" || name == "overlays" || L.len > 500)) + if (L.len > 0 && !(name == "underlays" || name == "overlays" || L.len > (IS_NORMAL_LIST(L) ? 50 : 150))) for (var/i in 1 to L.len) var/key = L[i] var/val