Hello, could someone explain what a " Mcmeta " file is and what you would do with it? It has to do with data packs.
1
That file is the main file that tells Minecraft, "this is a data pack." It also gives some basic information about the data pack, described in the Minecraft Wiki page on data packs.
The file contains data in JSON format:
The description is a description that will be shown to data pack users.
The pack_format represents the version that the pack is meant for.
The file contains data in JSON format:
{
"pack":{
"description":"My data pack.",
"pack_format":7
}
}
The description is a description that will be shown to data pack users.
The pack_format represents the version that the pack is meant for.
