diff --git a/Distribution/Restock/GameData/ReStock/Plugins/Restock.dll b/Distribution/Restock/GameData/ReStock/Plugins/Restock.dll index 2446d22e..7d5f50e4 100644 Binary files a/Distribution/Restock/GameData/ReStock/Plugins/Restock.dll and b/Distribution/Restock/GameData/ReStock/Plugins/Restock.dll differ diff --git a/Source/Restock/ResourceBlacklist.cs b/Source/Restock/ResourceBlacklist.cs index ce2ce09e..08aad616 100644 --- a/Source/Restock/ResourceBlacklist.cs +++ b/Source/Restock/ResourceBlacklist.cs @@ -57,10 +57,15 @@ namespace Restock string lineBeforeComment = line.Split(COMMENT_SEPARATOR, 2, StringSplitOptions.None)[0].Trim(); if (lineBeforeComment == string.Empty) continue; + bool matchedFile = false; foreach (UrlDir.UrlFile urlFile in FindFilesForUrl(lineBeforeComment, dir)) { yield return urlFile; + matchedFile = true; } + + if (!matchedFile) + Debug.LogError($"[Restock] No files found matching url {lineBeforeComment}"); } }