This commit is contained in:
onebeastchris 2024-01-22 17:20:27 +01:00
parent ec325ff2e4
commit a5b8afbc3e

View file

@ -102,7 +102,7 @@ configure<BlossomExtension> {
fun buildNumber(): Int = System.getenv("GITHUB_RUN_NUMBER")?.let { Integer.parseInt(it) } ?: -1
fun isDevBuild(branch: String, repository: String): Boolean {
return branch != "master" && repository.equals("https://github.com/GeyserMC/Geyser", ignoreCase = true).not()
return branch != "master" || repository.equals("https://github.com/GeyserMC/Geyser", ignoreCase = true).not()
}