From 955c64047565cf0390c145ba3d81885367a39dd7 Mon Sep 17 00:00:00 2001 From: Metious <71298690+Metious@users.noreply.github.com> Date: Mon, 16 Oct 2023 22:42:11 +0330 Subject: [PATCH] Added better error for requirements --- Nautilus/Patchers/KnownTechPatcher.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Nautilus/Patchers/KnownTechPatcher.cs b/Nautilus/Patchers/KnownTechPatcher.cs index 1347caf3..3d968bac 100644 --- a/Nautilus/Patchers/KnownTechPatcher.cs +++ b/Nautilus/Patchers/KnownTechPatcher.cs @@ -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; }