Tags
Creators
Details
2.9.38
Compatibility
Changes
Changelog
[26.2.0-2.9.38] - 2026-09-06
New /pmmo config mod_settings Command
The command-based config feature has been expanded to include server configs.
Minor Version Impact
in order to distinguish commands such as "enabled" amongst features like vein miner and mob scaling some keywords have been updated. this will affect scripting and configs as the names of properties will change.
| Change | Impact |
|---|---|
per_level -> xp_per_level |
scripts & datapacks |
enabled -> mob_scale_enabled |
scripts & datapacks |
base_level -> mob_scale_base_level |
scripts & datapacks |
per_level -> mob_scale_per_level |
scripts & datapacks |
power_base -> mob_scale_power_base |
scripts & datapacks |
enabled -> vein_enabled |
datapacks only |
Vein enabled only impacts datapacks because scripting added a prefix during parsing by default, so the change here only changes how the property appears in datapacks
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:2mgsNmNS"
}
// Legacy Loom dependency
dependencies {
modImplementation "maven.modrinth:KFQYC1Uy:2mgsNmNS"
}

