use of at.haha007.edenclient.utils.config.wrappers.BlockSet in project EdenClient by HahaOO7.
the class BlockSetLoader method save.
public NbtList save(Object value) {
BlockSet list = cast(value);
NbtList nbt = new NbtList();
for (Block item : list) {
nbt.add(PerWorldConfig.get().toNbt(item));
}
return nbt;
}