diff --git a/src/dumper/dumper.cs b/src/dumper/dumper.cs index 4968f36..12f14e3 100644 --- a/src/dumper/dumper.cs +++ b/src/dumper/dumper.cs @@ -174,7 +174,7 @@ class Dumper if (_dataPak == null || _provider == null) throw new InvalidOperationException("Attempted to call dump function without dumper initialization/state"); - _log.Info("Dumping character icons"); + _log.Info("Dumping items"); List itemDBPaths = _dataPak.Files.Keys.Where(x => x.Contains("/ItemDB.uasset", StringComparison.OrdinalIgnoreCase)).ToList(); @@ -283,7 +283,8 @@ class Dumper private void ExportIcon(string assetPath, string outPath) { - if (_provider == null) throw new InvalidOperationException("Attempted to call dump function without dumper initialization/state"); + if (_provider == null) + throw new InvalidOperationException("Attempted to call dump function without dumper initialization/state"); string cleanPath = assetPath.Contains('.') ? assetPath[..assetPath.LastIndexOf('.')] : assetPath; string fileName = Path.GetFileName(cleanPath) + ".png";