1
0
mirror of https://github.com/Anuken/Mindustry.git synced 2024-10-05 20:37:25 +03:00

Fixed BE updater running on Steam

This commit is contained in:
Anuken 2024-08-30 00:25:14 -04:00
parent 7a71db26b6
commit a3dc2cecbd
2 changed files with 1 additions and 3 deletions

View File

@ -31,7 +31,7 @@ public class BeControl{
/** @return whether this is a bleeding edge build. */
public boolean active(){
return Version.type.equals("bleeding-edge") || !steam;
return Version.type.equals("bleeding-edge") && !steam;
}
public BeControl(){

View File

@ -93,8 +93,6 @@ platforms.each{ platform ->
task "packr${platform.toString()}"{
dependsOn dist
println "JDK dir: " + new File("${JDK_DIR}").getAbsolutePath()
doLast{
copy{
into "build/packr/"