Hello everyone 👋
I released to Kore a new feature letting you merge your current datapack with other datapacks when generating it, it even works with zips, checks version compatibility and it merges important tags !
Copy code
val myDatapack1 = dataPack("my_datapack 1") {
// datapack code here
}
val myDatapack2 = dataPack("my_datapack 2") {
// datapack code here
}
myDatapack1.generate {
mergeWithDatapacks(myDatapack2)
mergeWithDatapacks("existing_local_datapack.zip")
}
Checkout the documentation on this new feature there ! 📝