diff --git a/Nautilus/Patchers/CraftDataPatcher_Subnautica.cs b/Nautilus/Patchers/CraftDataPatcher_Subnautica.cs index f9937bb6..1024dc19 100644 --- a/Nautilus/Patchers/CraftDataPatcher_Subnautica.cs +++ b/Nautilus/Patchers/CraftDataPatcher_Subnautica.cs @@ -155,7 +155,7 @@ private static void NeedsPatchingCheckPrefix(TechType techType) { bool techExists = CraftData.techData.TryGetValue(techType, out CraftData.TechData techData); - bool sameData = false; + bool sameData = techExists; if (techExists && CustomRecipeData.TryGetValue(techType, out ITechData customTechData)) { sameData = customTechData.craftAmount == techData.craftAmount &&