1.2.0
Compatibility
Changes
📦 Nota de Actualización
🇪🇸 Español
🛠️ Mejora en el sistema de carga
Se optimizĂł el proceso de carga del mod para que ahora se inicie despuĂ©s de que todos los Ătems de cualquier otro mod hayan sido cargados.
Esto garantiza que ItemMarket registre absolutamente todos los Ătems disponibles, evitando faltantes y asegurando que:
- Todos los Ătems aparezcan correctamente en la GUI de compra y venta.
- No haya Ătems invisibles o no registrados por errores de orden de carga.
- La experiencia del usuario sea más estable y confiable.
🇬🇧 English
🛠️ Load system improvement
The mod loading process has been optimized so that it now starts after all items from any other mod have been fully loaded.
This ensures that ItemMarket correctly registers every available item, preventing missing entries and making sure that:
- All items appear properly in the buy/sell GUI.
- No items are skipped due to load order issues.
- The user experience is more stable and reliable.
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:SVVHnArt:S16bAeDl"
}
// Legacy Loom dependency
dependencies {
modImplementation "maven.modrinth:SVVHnArt:S16bAeDl"
}

