From bdeeb4c93b97ddee47964601d419e12f749eabcd Mon Sep 17 00:00:00 2001 From: James Seibel Date: Sat, 7 Feb 2026 10:01:05 -0600 Subject: [PATCH] remove TODO for LWJGL versioning --- core/build.gradle | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/build.gradle b/core/build.gradle index 8a0c953f3..a2cbb828e 100644 --- a/core/build.gradle +++ b/core/build.gradle @@ -22,7 +22,7 @@ project.ext.lwjglNatives = "natives-" + os.toFamilyName() dependencies { // All of these dependencies are in Vanilla Minecraft, but we need to depend on it as we arent importing Minecraft in the core // Imports most of lwjgl's libraries (well, only the ones that we need) - implementation platform("org.lwjgl:lwjgl-bom:${rootProject.lwjgl_version}") // TODO: Use Minecraft's version for lwjgl_version (which changes in nearly every version) instead of a hard defined version for all versions + implementation platform("org.lwjgl:lwjgl-bom:${rootProject.lwjgl_version}") // REMEMBER: Dont shadow stuff here, these are just the libs that are included in Minecraft so that the core can use implementation "org.lwjgl:lwjgl"