diff --git a/src/java/com/threerings/getdown/launcher/Getdown.java b/src/java/com/threerings/getdown/launcher/Getdown.java index 710a001..9727678 100644 --- a/src/java/com/threerings/getdown/launcher/Getdown.java +++ b/src/java/com/threerings/getdown/launcher/Getdown.java @@ -397,7 +397,11 @@ public abstract class Getdown extends Thread List failures = _app.verifyResources(_progobs, alreadyValid); if (failures == null) { Log.info("Resources verified."); - launch(); + // Only launch if we aren't in silent mode. Some mystery program starting out + // of the blue would be disconcerting. + if (!_silent) { + launch(); + } return; }