From c233dac72bed832048dcaf5f2517701afad3af4f Mon Sep 17 00:00:00 2001 From: Yeregorix Date: Sun, 22 Sep 2024 12:07:39 +0200 Subject: [PATCH] Fix missing LWJGL natives in SV client --- vanilla/build.gradle.kts | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/vanilla/build.gradle.kts b/vanilla/build.gradle.kts index 524906a28a6..23e1268dcc9 100644 --- a/vanilla/build.gradle.kts +++ b/vanilla/build.gradle.kts @@ -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 } }