Mirror von
https://github.com/GeyserMC/Geyser.git
synchronisiert 2024-12-27 08:30:12 +01:00
Handle new creative_items.json format
Dieser Commit ist enthalten in:
Ursprung
b222b05348
Commit
9a9695ead7
@ -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();
|
||||
}
|
||||
|
Laden…
In neuem Issue referenzieren
Einen Benutzer sperren