Links
Tags
Creators
Details
1.3
Compatibility
Changes
Version 1.3 introduces significant improvements and bug fixes, now requiring Minecraft 1.19+ for full compatibility.
Key Changes
Architecture & Performance:
- Removed event listener implementation, simplifying the plugin structure
- Changed from task-based event handling to direct scheduler task management with explicit
taskIdtracking - Optimized villager iteration to use loaded chunks instead of all entities
Trade Refresh Logic:
- Added check to skip villagers with no trades
- Implemented proper recipe cloning with support for 1.19+ properties:
villagerExperienceandpriceMultiplier - Added try-catch for demand/special price methods (version compatibility)
- Only refresh trades that have actually been used
Command & Configuration:
- Added interval validation to prevent invalid values
- Added permission check in tab completion
- Removed dependency on
Objects.requireNonNull()for cleaner code
Bug Fixes:
- Fixed task cancellation to properly track and cancel individual tasks
- Improved error messaging for invalid command arguments
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:PQr1Y3Qx:8F9hgnrL"
}
// Legacy Loom dependency
dependencies {
modImplementation "maven.modrinth:PQr1Y3Qx:8F9hgnrL"
}

