Color script fixes

This commit is contained in:
Anuken
2020-03-19 20:15:41 -04:00
parent 966321baca
commit c4d5314a1a
2 changed files with 3 additions and 3 deletions

View File

@@ -27,8 +27,8 @@ def transformColors = { List<List<String>> list ->
}
newColors.each{ color ->
colorMap.put(Color.argb8888(color), newColors)
colorIndexMap.put(Color.argb8888(color), newColors.indexOf(color))
colorMap.put(color.argb8888(), newColors)
colorIndexMap.put(color.argb8888(), newColors.indexOf(color))
}
}
}