Links
Tags
Creators
Details
Licensed MIT
Published 4 months ago
Updated 2 days ago
All versions
1.8.7+forge.1.20.1
Release
AMI 1.8.7 (Forge 1.20.1)2 days ago 12
Compatibility
Minecraft: Java Edition
1.20.1
Platform
Forge
Supported environments
Client and server
Changes
1.8.7 - 2026-09-03
Added
- Added a server-side
/ami dump(all,items,recipes,loot-tables,trades,worldgen) that works from a dedicated server console. The existing dump tree registers through client command events, which do not exist on a dedicated server, so none of it could be produced headlessly - the one place that loads a full mod set with no GPU, no resource packs and no human clicking. Registered at permission level 2 rather than behind-Dami.debugCommands, because needing a JVM flag on a server you did not launch yourself makes it unusable in exactly the case it exists for. Search nodes, guide docs, the results tree and recipe-viewer dumps are deliberately not included: they read the client index or a viewer plugin and have no meaning without a client. - Added
/ami dump worldgen, writing every biome, structure and dimension with its tags toami_dumps/worldgen/worldgen-dump.json. This is new data rather than a port: the registry dump has only items. Taking it from the live registry is also the only complete source - modded biomes and structures are datapack JSON and can be scanned from jars, but vanilla's are registered in code, so a data scan silently missesminecraft:deep_oceanand every other vanilla entry. - Added Fabric and NeoForge
/ami dump trades, which resolves the active villager and wandering-trader listing factories against a deterministic server-side sample and writes costs, results, limits, XP, listing classes, and unresolved reasons toami_dumps/trades/trades_runtime.json. Map-dependent offers can remain unresolved in an isolated world with no discoverable structures.
Changed
- Stack snapshots and
CreativeStackVariantExpander.stackIdentityHashno longer read display names or tooltips on a dedicated server.getHoverName()dispatches toItem#getName(ItemStack), which mods routinely override with client code, and the tooltip inputs go throughgetTooltipLinesoutright; the existing catch guards stopped those from failing but not from being logged, so a single/ami dump allover a 333-mod pack emitted 6,306 RuntimeDistCleaner errors and spent most of its runtime producing them. Nothing is lost: modassets/are never loaded on a dedicated server, so those names only ever resolved to raw translation keys. Server and client identity hashes already disagreed for that reason -exactKeywas never comparable across sides and still is not. RecipeDumpWriters.writeLootTablesgained an overload taking an explicitResourceManager. The existing no-arg path falls back toMinecraft.getInstance(), and merely executing that branch on a dedicated server trips RuntimeDistCleaner.
Fixed
- Fixed Fabric dedicated servers crashing during AMI startup because
FabricPlatformHelpereagerly constructed client key mappings from its common static initializer. Key mappings now initialize only when the client accessor is actually used.
Optional dependencies
Any compatible version
Any compatible version
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:QOM56zjQ:mEGibHuB"
}
// Legacy Loom dependency
dependencies {
modImplementation "maven.modrinth:QOM56zjQ:mEGibHuB"
}

