From a3eb9970c651cac2ad76c02f9b58c6124d68fc34 Mon Sep 17 00:00:00 2001 From: neru Date: Thu, 18 Jun 2026 16:43:01 -0300 Subject: [PATCH] fix: only check needed var --- src/dumper/dumper.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/dumper/dumper.cs b/src/dumper/dumper.cs index 7f0e1aa..89ec531 100644 --- a/src/dumper/dumper.cs +++ b/src/dumper/dumper.cs @@ -156,7 +156,7 @@ class Dumper public void DumpCharacterIcons() { - if (_dataPak == null || _provider == null) + if (_provider == null) throw new InvalidOperationException("Attempted to call dump function without dumper initialization"); _log.Info("Dumping character icons");