From 0d554ed8f3a2f6e983dad34b2a33925452a31e2d Mon Sep 17 00:00:00 2001 From: AzureDoom <7415711+AzureDoom@users.noreply.github.com> Date: Fri, 19 Jun 2026 13:20:38 -0400 Subject: [PATCH 1/2] Fix: Ignore .vscode --- .gitignore | 1 + 1 file changed, 1 insertion(+) diff --git a/.gitignore b/.gitignore index a77757f..1e05944 100644 --- a/.gitignore +++ b/.gitignore @@ -9,3 +9,4 @@ run/ .classpath .project .settings/ +.vscode \ No newline at end of file From 887468221e4752a93ee2755930b50b1631144992 Mon Sep 17 00:00:00 2001 From: AzureDoom <7415711+AzureDoom@users.noreply.github.com> Date: Fri, 19 Jun 2026 13:21:06 -0400 Subject: [PATCH 2/2] Fix: Changing mod_name not updating build jar. --- build.gradle.kts | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/build.gradle.kts b/build.gradle.kts index bb447b8..00c99fa 100644 --- a/build.gradle.kts +++ b/build.gradle.kts @@ -41,6 +41,11 @@ repositories { mavenCentral() } +tasks.named("jar") { + archiveBaseName.set(project.property("mod_name").toString()) + archiveVersion.set(project.property("version").toString()) +} + // Uncomment if you are using IntelliJ. // idea { // module {