diff --git a/.gitignore b/.gitignore index 1c48285..3a66c84 100644 --- a/.gitignore +++ b/.gitignore @@ -22,7 +22,7 @@ build # other eclipse -run +run_client run_server *.txt diff --git a/build.gradle b/build.gradle index 22991d1..7890b5f 100644 --- a/build.gradle +++ b/build.gradle @@ -26,7 +26,7 @@ java.toolchain.languageVersion = JavaLanguageVersion.of(17) // definitions at gradle/teacon-forge.gradle teacon { modId = 'slideshow' - modVersion = '0.6.2-rc.2' + modVersion = '0.6.2-rc.3' modLicense = 'BSD-3-Clause' modGitHubRepo = 'teaconmc/SlideShow' modAuthors = ['BloCamLimb', '3TUSK', 'ustc-zzzz'] diff --git a/gradle/teacon-forge.gradle b/gradle/teacon-forge.gradle index c5034f9..ebd95f7 100644 --- a/gradle/teacon-forge.gradle +++ b/gradle/teacon-forge.gradle @@ -30,7 +30,8 @@ interface TeaConExtension { } gradle.afterProject { Project current -> - // configure all the things + if (current != project) return + def teacon = current.extensions.teacon as TeaConExtension def (platformName, gameVersion, platformVersion) = teacon.getPlatform().get().split('-', 3)