Fix returning before displaying all ambiguous matches

This commit is contained in:
Cj 2024-06-29 02:01:49 -04:00
parent 6e7ac7e59a
commit bb3f1249a5

View File

@ -136,8 +136,9 @@ public class ReCodeItRemapper
{ {
var duplicateNewTypeName = duplicate.Key; var duplicateNewTypeName = duplicate.Key;
Logger.Log($"Ambiguous NewTypeName: {duplicateNewTypeName} found. Cancelling Remap.", ConsoleColor.Red); Logger.Log($"Ambiguous NewTypeName: {duplicateNewTypeName} found. Cancelling Remap.", ConsoleColor.Red);
return false;
} }
return false;
} }