Fixed crash due to version not starting with a number.

This commit is contained in:
2022-01-19 18:59:34 +00:00
parent 1b3b733457
commit d901b9aba4
2 changed files with 3 additions and 3 deletions

View File

@ -11,7 +11,7 @@ buildscript {
apply plugin: 'net.minecraftforge.gradle'
def archiveVersion = "Forge-${project.mcVersion}-${project.buildVersion}" as Object
def archiveVersion = "${project.mcVersion}-${project.buildVersion}" as Object
java.toolchain.languageVersion = JavaLanguageVersion.of(16)