diff --git a/Content.Client/Construction/UI/ConstructionMenuPresenter.cs b/Content.Client/Construction/UI/ConstructionMenuPresenter.cs index 9f0992ab4a..27ae5ef3c9 100644 --- a/Content.Client/Construction/UI/ConstructionMenuPresenter.cs +++ b/Content.Client/Construction/UI/ConstructionMenuPresenter.cs @@ -206,9 +206,6 @@ namespace Content.Client.Construction.UI { foreach (var recipe in actualRecipes) { - if (!recipe.Prototype.CrystallPunkAllowed) //CrystallEdge clearing recipes - continue; - var protoView = new EntityPrototypeView() { Scale = new Vector2(1.2f), @@ -263,6 +260,9 @@ namespace Content.Client.Construction.UI foreach (var recipe in _prototypeManager.EnumeratePrototypes()) { + if (!recipe.CrystallPunkAllowed) //CrystallEdge filter vanilla recipes + continue; + if (recipe.Hide) continue;