mirror of
https://github.com/mcMMO-Dev/mcMMO.git
synced 2025-04-03 18:26:24 +02:00
35 lines
1.0 KiB
Java
35 lines
1.0 KiB
Java
package com.gmail.nossr50.util.nbt;
|
|
|
|
import com.gmail.nossr50.mcMMO;
|
|
import net.minecraft.server.v1_13_R2.NBTBase;
|
|
|
|
/**
|
|
* A simple class that acts as a container for raw NBT data
|
|
* NBT data will be constructed from the raw NBT string using server internals
|
|
* This type is mostly used to take a raw string of NBT and transform it into the NBT data type used by internals
|
|
* the transformed data can then be used to check NBT data of entities in Minecraft
|
|
*
|
|
* One use of this type is as follows
|
|
* 1) Read partial or complete NBT from the config file for an item
|
|
* 2) Check an items NBT tree for this NBT data during runtime once transformed
|
|
*/
|
|
public class RawNBT {
|
|
private String nbtContents;
|
|
|
|
public RawNBT(String nbtContents) {
|
|
this.nbtContents = nbtContents;
|
|
}
|
|
|
|
public String getNbtContents() {
|
|
return nbtContents;
|
|
}
|
|
|
|
public void setNbtContents(String nbtContents) {
|
|
this.nbtContents = nbtContents;
|
|
}
|
|
|
|
public NBTBase getNbtData() {
|
|
return mcMMO.getNbtManager().constructNBT(nbtContents);
|
|
}
|
|
}
|