From 932fd47861f5457293cb28b2bf8facb9b34723cc Mon Sep 17 00:00:00 2001 From: Ed Date: Thu, 10 Jul 2025 21:56:31 +0300 Subject: [PATCH] Update CP14WorkbenchWindow.xaml.cs --- Content.Client/_CP14/Workbench/CP14WorkbenchWindow.xaml.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Content.Client/_CP14/Workbench/CP14WorkbenchWindow.xaml.cs b/Content.Client/_CP14/Workbench/CP14WorkbenchWindow.xaml.cs index 6f46954778..daabe940f5 100644 --- a/Content.Client/_CP14/Workbench/CP14WorkbenchWindow.xaml.cs +++ b/Content.Client/_CP14/Workbench/CP14WorkbenchWindow.xaml.cs @@ -93,7 +93,7 @@ public sealed partial class CP14WorkbenchWindow : DefaultWindow AddRecipeListToGrid(category.Value, gridContainer); } - if (_selectedEntry is not null && _cachedState.Recipes.Contains(_selectedEntry.Value)) + if (_selectedEntry is not null && !_cachedState.Recipes.Contains(_selectedEntry.Value)) RecipeSelectNull(); }