NBT-Manipulator

A kotlin/java lib that allows you to read and write NBT data in a clean way

View on GitHub

//nbt-manipulator/br.com.gamemods.nbtmanipulator/NbtCompound/getNullableListOfList

getNullableListOfList

[jvm]
fun getNullableListOfList(key: String): NbtList<NbtList<*>>?

Returns the NbtList of lists mapped to that key. The tag and it’s values will be linked and any modification will also change the mapped value.

Will return null if no value is mapped, or it is mapped to another type tag.

Throws

   
kotlin.ClassCastException If the NbtTag is not a NbtList
kotlin.IllegalStateException If the list is not empty and contains any tag with class different then NbtList