Skip to content

Commit

Permalink
Fix missing LWJGL natives in SV client
Browse files Browse the repository at this point in the history
  • Loading branch information
Yeregorix committed Sep 22, 2024
1 parent 98392d9 commit c233dac
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion vanilla/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -310,7 +310,13 @@ dependencies {

// All minecraft deps except itself
configurations.minecraft.get().resolvedConfiguration.resolvedArtifacts
.map { it.id.componentIdentifier.toString() }
.map {
var id = it.id.componentIdentifier.toString()
if (it.classifier != null) {
id += ":" + it.classifier
}
id
}
.filter { !it.startsWith("net.minecraft:joined") }
.forEach { boot(it) { isTransitive = false } }

Expand Down

0 comments on commit c233dac

Please sign in to comment.