Lowers max list size in vv

This commit is contained in:
CitadelStationBot
2017-04-26 20:15:54 -05:00
parent e7df2bc14a
commit bba83f9291
+1 -1
View File
@@ -446,7 +446,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