0.6.0
Compatibility
Required content
Changes
⚠️ Breaking changes
- Quest types are enabled according to the enabledQuestTypes config option. You need to ensure this value is set correctly or quests won't be generated for players.
🚀 Features
Reward tiers are now configurable
Customize reward tiers in config, and use custom loot tables for rewards. Default values are as they were previously.
New quest type: Deposit item
- This quest type requires the player to deposit a certain amount of a certain item.
- Quest items are controlled via the
daily-quest:deposit_item_questsloot table (you can override this with a custom table to customize it). - This quest type is disabled by default as it requires extra setup: you need to make players able to run the
/quests internal deposititemcommand as an op (e.g. through Fuji's "run-as fake-op"). This may change in future, but is done like this as the server this mod was made for is choosing to make an NPC you need to interact with to deposit items.
🛠️ Other changes and fixes
- Migrated to Mojang mappings in preparation for Minecraft 26.1
Full changelog: https://github.com/Samuel-Lewis/mc-daily-quest/compare/v0.5.2...v0.6.0
Optional dependencies
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:KyrURZ9w:yUiHzwdy"
}
// Legacy Loom dependency
dependencies {
modImplementation "maven.modrinth:KyrURZ9w:yUiHzwdy"
}

