mirror of
https://github.com/TeamMidnightDust/VisualOverhaul.git
synced 2025-12-15 13:45:09 +01:00
- Update to 1.20.4 - Switch Forge version to NeoForge - Update resourcepacks & add round relic disc (thanks to @SuperNoobYT) - Furnaces will now show results when finished (closes #61) - Fix crash related to sound events (closes #60, #52) - Fix crash related to button icons (closes #59, #55, #54, likely #49) - Fix log spam when mod is only present on server (closes #33) - Fix jukeboxes staying powered after playback has finished (closes #53)
20 lines
660 B
Groovy
20 lines
660 B
Groovy
architectury {
|
|
common(rootProject.enabled_platforms.split(","))
|
|
}
|
|
|
|
loom {
|
|
}
|
|
repositories {
|
|
maven { url "https://api.modrinth.com/maven" }
|
|
}
|
|
|
|
dependencies {
|
|
// We depend on fabric loader here to use the fabric @Environment annotations and get the mixin dependencies
|
|
// Do NOT use other classes from fabric loader
|
|
modImplementation "net.fabricmc:fabric-loader:${rootProject.fabric_loader_version}"
|
|
modCompileOnlyApi "maven.modrinth:midnightlib:${rootProject.midnightlib_version}-fabric"
|
|
|
|
// Remove the next line if you don't want to depend on the API
|
|
//modApi "dev.architectury:architectury:${rootProject.architectury_version}"
|
|
}
|