diff --git a/ArcFormats/Lucifen/ArcLPK.cs b/ArcFormats/Lucifen/ArcLPK.cs index ddd72a84..3d67c290 100644 --- a/ArcFormats/Lucifen/ArcLPK.cs +++ b/ArcFormats/Lucifen/ArcLPK.cs @@ -361,12 +361,9 @@ namespace GameRes.Formats.Lucifen if (null == options) return DefaultScheme; string title = options.Scheme; - if (null == options.Key) - { - Dictionary file_map = null; - if (KnownKeys.TryGetValue (title, out file_map)) - CurrentFileMap = new Dictionary (file_map); - } + Dictionary file_map; + if (KnownKeys.TryGetValue (title, out file_map)) + CurrentFileMap = new Dictionary (file_map); return KnownSchemes[title]; }