From 60512430ac83f43ca294d7d32ec979a0fbb46a40 Mon Sep 17 00:00:00 2001 From: neru Date: Thu, 18 Jun 2026 17:59:49 -0300 Subject: [PATCH] style: remove unneeded log --- src/dumper/dumper.cs | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/src/dumper/dumper.cs b/src/dumper/dumper.cs index 187174c..04f29e6 100644 --- a/src/dumper/dumper.cs +++ b/src/dumper/dumper.cs @@ -295,11 +295,12 @@ class Dumper if (File.Exists(fullPath)) return; - // special thanks to whichever dev kept fucking up the casing + /* + * shoutout to whichever dev kept fucking up the casing + * its rly surprising how many times this happened + */ if (!_provider.TryLoadPackage(cleanPath, out IPackage? package)) { - _log.Verbose("Failed exact path match for {0}. Attempting case-insensitive search", cleanPath); - string searchSuffix = cleanPath; if (searchSuffix.StartsWith("/Game/"))