From 37659985ec70afdda51b4eb8981a5d98a7bad7c2 Mon Sep 17 00:00:00 2001 From: Myron Boyle Date: Mon, 25 Feb 2019 14:47:33 +0100 Subject: [PATCH] do not fail on lock file creation, when in silent=noupdate --- .../src/main/java/com/threerings/getdown/launcher/Getdown.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/launcher/src/main/java/com/threerings/getdown/launcher/Getdown.java b/launcher/src/main/java/com/threerings/getdown/launcher/Getdown.java index 20518b8..c3add10 100644 --- a/launcher/src/main/java/com/threerings/getdown/launcher/Getdown.java +++ b/launcher/src/main/java/com/threerings/getdown/launcher/Getdown.java @@ -270,7 +270,7 @@ public abstract class Getdown extends Thread // and force our UI to be recreated with the updated info createInterfaceAsync(true); } - if (!_app.lockForUpdates()) { + if (!_noUpdate && !_app.lockForUpdates()) { throw new MultipleGetdownRunning(); }