diff --git a/core/build.gradle.kts b/core/build.gradle.kts index dbf63b6f0..8f79a3b8a 100644 --- a/core/build.gradle.kts +++ b/core/build.gradle.kts @@ -102,7 +102,7 @@ configure { 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() }