diff --git a/src/dumper/dumper.cs b/src/dumper/dumper.cs index 576737c..7f0e1aa 100644 --- a/src/dumper/dumper.cs +++ b/src/dumper/dumper.cs @@ -159,10 +159,12 @@ class Dumper if (_dataPak == null || _provider == null) throw new InvalidOperationException("Attempted to call dump function without dumper initialization"); + _log.Info("Dumping character icons"); + foreach (CharacterInfo info in _characterMap.Values) - { ExportIcon(info.iconFilePath, "/character-icons/"); - } + + _log.Info("Dumped all character icons"); return; }