Fully configurable datapacks & resourcepacks loader
A lightweight, fully configurable alternative to globalpacks / paxi, with no external dependencies.
Datapack and resource pack loading can be enabled or disabled independently. This is useful if you prefer to delegate one of these responsibilities to another mod, such as Resource Pack Override.
Both load order and force-loading are fully managed by this mod.
Below is a quick example showcasing the available configuration options:
[datapack]
# Enable datapack handling by Sazerac.
# This does NOT change Minecraft’s default datapack behavior.
enable = true
# Root directory from which datapacks are loaded.
# Defaults to Minecraft's "datapacks" directory.
root = "datapacks"
# List of datapacks that will be force-loaded by Sazerac,
# relative to the root directory.
#
# Datapacks are loaded in the order they appear in this list.
#
# Example:
# required = [ "My Datapack", "My Datapack.zip" ]
required = []
[resourcepack]
# Enable resource pack handling by Sazerac.
# This does NOT change Minecraft’s default resource pack behavior.
enable = true
# Root directory from which resource packs are loaded.
# Defaults to Minecraft's "resourcepacks" directory.
root = "resourcepacks"
# List of resource packs that will be force-loaded by Sazerac,
# relative to the root directory.
#
# Resource packs are loaded in the order they appear in this list.
#
# Example:
# required = [ "My Resource Pack", "My Resource Pack.zip" ]
required = []
Note: Any pack not listed in the
requiredarray is considered optional.
Conversation