From 8a00ff60d8ac13fb25ca6f3a9002177e445a72d7 Mon Sep 17 00:00:00 2001 From: Leandro Quiroga <30802640+leaqui@users.noreply.github.com> Date: Fri, 14 Dec 2018 16:35:43 -0300 Subject: [PATCH] true arg passed to install() --- .../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 8f14717..1b04122 100644 --- a/launcher/src/main/java/com/threerings/getdown/launcher/Getdown.java +++ b/launcher/src/main/java/com/threerings/getdown/launcher/Getdown.java @@ -720,7 +720,7 @@ public abstract class Getdown extends Thread throws IOException { for (Resource rsrc : resources) { - rsrc.install(); + rsrc.install(true); } }