Fixes list vv with numeric values (#47120)

This commit is contained in:
AnturK
2019-10-17 11:49:09 -04:00
committed by Emmett Gaines
parent cca969feea
commit 823c09b01e
@@ -193,9 +193,10 @@ GLOBAL_PROTECT(VVpixelmovement)
else
variable = L[index]
//EXPERIMENTAL - Keep old associated value while modifying key, if any
var/found = L[variable]
if(!isnull(found))
old_assoc_value = found
if(IS_VALID_ASSOC_KEY(variable))
var/found = L[variable]
if(!isnull(found))
old_assoc_value = found
//
default = vv_get_class(objectvar, variable)