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. */ /** @return whether this is a bleeding edge build. */
public boolean active(){ public boolean active(){
return Version.type.equals("bleeding-edge") || !steam; return Version.type.equals("bleeding-edge") && !steam;
} }
public BeControl(){ public BeControl(){

View File

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