Skip to main content
Version: 26.1+

Feature Flags

Feature flags are opt-in switches that enable specific content which is disabled by default. In an addonpack, they are declared in the pack.mcmeta file under a features block. Any flag not listed there stays inactive, and the content gated behind it will not be loaded.

pack.mcmeta
{
"addonpack": {
"description": "My Pack",
"min_format": [2, 0],
"max_format": [2, 0]
},
"features": {
"enabled": [
"palladium:material/titanium",
"palladium:worldgen/meteorite_biome"
]
}
}

Palladium Feature Flags

The following flags are provided by Palladium:

FlagDescription
palladium:mechanic/tailoringEnables the Tailoring Bench.
palladium:customization/eye_selectionEnables the eye position menu.
palladium:material/leadEnables Lead items and world generation.
palladium:material/titaniumEnables Titanium items and world generation.
palladium:material/vibraniumEnables Vibranium items and world generation.
palladium:worldgen/meteorite_biomeEnables meteorite biome world generation.

Enabling All Palladium Flags

To opt into all of Palladium's optional content at once:

pack.mcmeta
{
"addonpack": {
"description": "My Pack",
"min_format": [2, 0],
"max_format": [2, 0]
},
"features": {
"enabled": [
"palladium:mechanic/tailoring",
"palladium:customization/eye_selection",
"palladium:worldgen/meteorite_biome",
"palladium:material/lead",
"palladium:material/titanium",
"palladium:material/vibranium"
]
}
}