Handle new creative_items.json format

This commit is contained in:
AJ Ferguson 2019-12-21 01:32:49 -09:00
parent b222b05348
commit 9a9695ead7

View file

@ -116,7 +116,7 @@ public class Toolbox {
List<LinkedHashMap<String, Object>> creativeItemEntries = new ArrayList<>();
try {
creativeItemEntries = creativeItemMapper.readValue(creativeItemStream, ArrayList.class);
creativeItemEntries = (ArrayList<LinkedHashMap<String, Object>>) creativeItemMapper.readValue(creativeItemStream, HashMap.class).get("items");
} catch (Exception e) {
e.printStackTrace();
}