Tags
Creators
Details
2.8.35
Compatibility
Changes
Changelog
[26.1.2-2.8.35] - 2026-09-02
New /pmmo config Command
A new command has been added allowing you to make persistent edits to your world straight from the chat menu.
/pmmo config creates files one at a time in a new datapack called "command_pack". Here are a few examples:
/pmmo config blocks minecraft:dirt xp BLOCK_BREAK set excavation 1/pmmo config items minecraft:cobblestone salvage set minecraft:iron_nugget base_chance 0.01/pmmo config dimension minecraft:overworld bonuses DIMENSION clear
Technical notes
- The pack generated this way behaves like a datapack which uses
withOverrides,withDefaults, plus updates the setting in the command - You can have
generated_dataandcommand_packat the same time, and they will apply their respective override rules accordingly.
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:KFQYC1Uy:t8Lo9UQk"
}
// Legacy Loom dependency
dependencies {
modImplementation "maven.modrinth:KFQYC1Uy:t8Lo9UQk"
}

