Merge pull request #3862 from Citadel-Station-13/upstream-merge-32498

[MIRROR] Fixes VV not displaying false values in keyed lists
This commit is contained in:
LetterJay
2017-11-13 11:41:18 -06:00
committed by GitHub
+2 -2
View File
@@ -53,7 +53,7 @@
return
var/title = ""
var/refid = "[REF(D)]"
var/refid = REF(D)
var/icon/sprite
var/hash
@@ -453,7 +453,7 @@
var/val
if (IS_NORMAL_LIST(L) && !isnum(key))
val = L[key]
if (!val)
if (isnull(val)) // we still want to display non-null false values, such as 0 or ""
val = key
key = i