fix a fall through

This commit is contained in:
Timothy Baldridge 2019-09-24 05:46:12 -06:00
parent 3b76117cf8
commit 30b592f16e

View File

@ -36,7 +36,7 @@ namespace Wabbajack.Common
{
if (source.EndsWith(".bsa"))
ExtractAllWithBSA(source, dest);
if (source.EndsWith(".exe"))
else if (source.EndsWith(".exe"))
ExtractAllWithInno(source, dest);
else
ExtractAllWith7Zip(source, dest);