From 62526fd246e456947c2c1ffe2bcc3e8a1e0fd55f Mon Sep 17 00:00:00 2001 From: neru Date: Thu, 18 Jun 2026 18:03:42 -0300 Subject: [PATCH] style: wrong log text, missing line break --- src/dumper/dumper.cs | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) 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";