Skip to content

Commit

Permalink
Added better error for requirements
Browse files Browse the repository at this point in the history
  • Loading branch information
Metious committed Oct 16, 2023
1 parent 16b83ac commit 955c640
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Nautilus/Patchers/KnownTechPatcher.cs
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ private static void InitializePrefix(PDAData data)
var index = data.analysisTech.FindIndex(tech => tech.techType == blueprintRequirements.Key);
if (index == -1)
{
InternalLogger.Error($"TechType '{blueprintRequirements.Key.AsString()}' does not have an analysis tech. Cancelling requirement addition.");
InternalLogger.Error($"TechType '{blueprintRequirements.Key.AsString()}' does not have an analysis tech. Cancelling requirement addition for TechTypes '{blueprintRequirements.Value.Join()}'.");
continue;
}

Expand Down

0 comments on commit 955c640

Please sign in to comment.