Fix crafting menu icon not appearing

Fixes #4210
This commit is contained in:
Vera Aguilera Puerto
2021-06-20 22:45:00 +02:00
parent 1eae13a863
commit 82a2663d1f
2 changed files with 2 additions and 1 deletions

View File

@@ -29,7 +29,7 @@ namespace Content.Client.Construction
private int _nextId;
private bool CraftingEnabled { get; set; }
public bool CraftingEnabled { get; private set; }
/// <inheritdoc />
public override void Initialize()

View File

@@ -476,6 +476,7 @@ namespace Content.Client.Construction.UI
_constructionSystem = system;
system.ToggleCraftingWindow += SystemOnToggleMenu;
system.CraftingAvailabilityChanged += SystemCraftingAvailabilityChanged;
CraftingAvailable = system.CraftingEnabled;
}
private void UnbindFromSystem()