add support for dungeon and taverns datapack

This commit is contained in:
alexcrea 2025-07-08 21:41:05 +02:00
parent 6930867e74
commit a2c0037666
Signed by: alexcrea
GPG key ID: E346CD16413450E3
4 changed files with 97 additions and 1 deletions

View file

@ -24,7 +24,8 @@ object DataPackDependency {
*/
private val LASTEST_VERSION = mapOf(
Pair("bracken", Version(1, 11, 0)),
Pair("enchantplus", Version(1, 13, 0))
Pair("enchantplus", Version(1, 13, 0)),
Pair("dungeons_and_taverns", Version(1, 13, 0))
)
val enabledDatapacks: List<String>
@ -53,6 +54,11 @@ object DataPackDependency {
continue
}
if (packName.contains("Dungeons and Taverns", ignoreCase = true)) {
handlePack("dungeons_and_taverns")
continue
}
}
}