From 2a88a3337972274dc87296acc66fb55984f587af Mon Sep 17 00:00:00 2001 From: UnknownShadow200 Date: Tue, 2 May 2017 00:16:53 +1000 Subject: [PATCH] Failing to download a sound isn't a critical error, should hopefully address #421. --- Launcher2/Patcher/SoundPatcher.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Launcher2/Patcher/SoundPatcher.cs b/Launcher2/Patcher/SoundPatcher.cs index 0906f70ea..e22c1bdc7 100644 --- a/Launcher2/Patcher/SoundPatcher.cs +++ b/Launcher2/Patcher/SoundPatcher.cs @@ -43,9 +43,9 @@ namespace Launcher.Patcher { Console.WriteLine("got sound " + identifiers[i]); if (item.Data == null) { setStatus("&cFailed to download " + identifiers[i]); - return false; + } else { + DecodeSound(files[i].Substring(1), (byte[])item.Data); } - DecodeSound(files[i].Substring(1), (byte[])item.Data); // TODO: setStatus(next); if (i == identifiers.Length - 1) {