Archiviert
13
0

Add support for long array nbt type

Fixes #648
Dieser Commit ist enthalten in:
Dan Mulloy 2019-08-03 11:46:58 -04:00
Ursprung 62e8d82e16
Commit 916434251d
3 geänderte Dateien mit 418 neuen und 413 gelöschten Zeilen

Datei anzeigen

@ -87,7 +87,12 @@ public enum NbtType {
/**
* A list of fully formed tags, including their IDs, names, and payloads. No two tags may have the same name.
*/
TAG_COMPOUND(10, Map.class);
TAG_COMPOUND(10, Map.class),
/**
* An array of longs
*/
TAG_LONG_ARRAY(12, long[].class);
private int rawID;
private Class<?> valueType;