Creators
Details
1.3
Compatibility
Changes
๐ง Config
Config file renamed: progressivestages-common.toml โ progressivestages.toml ๐ก๏ธ New Enforcement Options (in progressivestages.toml)
block_item_hotbar โ moves locked items out of the hotbar into inventory instead of dropping them block_item_mouse_pickup โ prevents clicking locked items in GUIs (but lets players store them in chests) Left-clicking and mining with a locked tool is now properly blocked Attacking with a locked weapon is now properly blocked ๐ Recipe-Only Locks (in stage TOML [locks])
New recipe_items = ["minecraft:diamond_pickaxe"] โ locks crafting without locking the item itself Players can still pick up, hold, and use items found in loot โ they just can't craft them EMI hides the recipe; item stays visible in the index Tooltip shows "๐ Recipe Locked", "๐ Item Locked", or "๐ Item and Recipe Locked" as appropriate โ๏ธ Per-Stage Enforcement Exceptions (new [enforcement] section in stage TOML)
Five new lists per stage: allowed_use, allowed_pickup, allowed_hotbar, allowed_mouse_pickup, allowed_inventory Accepts item IDs, tags (#c:gems/diamond), or whole mod IDs (mekanism) Lets specific items bypass individual enforcement rules even while still locked
Projects on Modrinth are automatically available through a Maven repository for use with JVM build tools such as Gradle. To learn more about the Modrinth Maven API, click here.
Note: When available, you should use the creator's maven repo instead as it will have transitive dependency information that the Modrinth Maven API does not. You may also end up with duplicate dependencies if you use a mix of Modrinth and non-Modrinth Maven repositories for your dependencies, because the group identifier will be different when served through the Modrinth Maven API.
Maven coordinates:
Version ID:
build.gradle:
repositories {
exclusiveContent {
forRepository {
maven {
name = "Modrinth"
url = "https://api.modrinth.com/maven"
}
}
// forRepositories(fg.repository) // Uncomment when using ForgeGradle
filter {
includeGroup "maven.modrinth"
}
}
}
// Standard Gradle dependency
dependencies {
implementation "maven.modrinth:rY4mdP4Q:bJDWciBd"
}
// Legacy Loom dependency
dependencies {
modImplementation "maven.modrinth:rY4mdP4Q:bJDWciBd"
}

