mirror of
https://github.com/dmulloy2/ProtocolLib.git
synced 2024-11-27 21:26:17 +01:00
parent
62e8d82e16
commit
916434251d
@ -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.
|
* 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 int rawID;
|
||||||
private Class<?> valueType;
|
private Class<?> valueType;
|
||||||
|
Loading…
Reference in New Issue
Block a user