Skip to content

Commit

Permalink
temporary workaround to get primitive dev run working
Browse files Browse the repository at this point in the history
  • Loading branch information
Nolij committed Jan 5, 2024
1 parent ba06dd5 commit 49a938f
Showing 1 changed file with 9 additions and 1 deletion.
10 changes: 9 additions & 1 deletion primitive/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,15 @@ repositories {
}

dependencies {
"modImplementation"(fabricApi.stationModule(moduleName = "station-keybindings-v0", version = "station_api_version"()))
"modImplementation"(fabricApi.stationModule(moduleName = "station-keybindings-v0", version = "station_api_version"())) {
exclude(module = "fabric-loader")
exclude(group = "org.ow2.asm")
}
"modImplementation"("net.modificationstation:StationAPI:2.0-PRE2") {
exclude(module = "cursed-fabric-loader")
exclude(module = "fabric-loader")
exclude(group = "org.ow2.asm")
}

val mixinExtras = "io.github.llamalad7:mixinextras-fabric:${"mixinextras_version"()}"
implementation(mixinExtras)
Expand Down

0 comments on commit 49a938f

Please sign in to comment.