From 2ab39dcd19951b051fcd544afe61d2a0b4d7323e Mon Sep 17 00:00:00 2001 From: Aizistral Date: Wed, 28 Jan 2026 23:52:47 +0100 Subject: [PATCH] Fix 'manifestVersion' in NeoForge buildscript --- NeoForge/build.gradle | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/NeoForge/build.gradle b/NeoForge/build.gradle index 5fc8cf8..bfe3440 100644 --- a/NeoForge/build.gradle +++ b/NeoForge/build.gradle @@ -77,9 +77,9 @@ jar { attributes([ "Specification-Title": "NoChatRestrictions", "Specification-Vendor": "Aizistral", - "Specification-Version": project.manifestVersion, + "Specification-Version": project.manifest_version, "Implementation-Title": project.name, - "Implementation-Version": project.manifestVersion, + "Implementation-Version": project.manifest_version, "Implementation-Vendor" :"NoChatRestrictions", "Implementation-Timestamp": new Date().format("yyyy-MM-dd'T'HH:mm:ssZ") ])