modpack/config/global_data_and_resourcepacks.toml
Sangelo a64b607f31 [a] add emuno, polymorph, draggable lists and recipes
- shield debuffed recipe
- emuno
- draggable lists
- polymorph
- diamond to sprocket conversion
- shield texture tweaks
2024-05-21 23:13:34 +02:00

25 lines
952 B
TOML

#This should under no circumstances be set to true in modpacks
#If set to true, the mod creates a new global folder, that is global for your user on your computer.
#The created folders will be:
# <user_home>/.minecraft_global_packs/required_datapacks
# <user_home>/.minecraft_global_packs/optional_datapacks
# <user_home>/.minecraft_global_packs/required_resourcepacks
# <user_home>/.minecraft_global_packs/optional_resourcepacks
enable_system_global_packs = false
#This config allows you to add or remove folders or single files as Data-/Resourcepacks
#For that simply specify the file path to the folder/file relative to your .minecraft or instance folder
#With the current config you can place a Datapack into '.minecraft/global_packs/required_data' to force enable a datapack.
[resourcepacks]
required = [
"resources/required_assets/"
]
[datapacks]
required = [
"resources/required_data/"
]
optional = [
"resources/optional_data/"
]