3
0
Mirror von https://github.com/GeyserMC/Geyser.git synchronisiert 2024-09-17 00:33:47 +02:00

Handle new creative_items.json format

Dieser Commit ist enthalten in:
AJ Ferguson 2019-12-21 01:32:49 -09:00
Ursprung b222b05348
Commit 9a9695ead7

Datei anzeigen

@ -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();
}