From 8eafa7ab0f7295bdd8350fc9c2954b02e7d50d1b Mon Sep 17 00:00:00 2001 From: Eris Date: Sat, 25 Jan 2025 18:46:21 -0500 Subject: [PATCH] Hotfix for Disk Burner Examine (#1656) # Description Had an aneurysm seeing this live on arcadis and webedited a fix. Fixes an issue on examining a disk burner without a board. --- # Changelog no Signed-off-by: Eris --- Content.Shared/_Arcadis/Computer/DiskBurnerSystem.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Content.Shared/_Arcadis/Computer/DiskBurnerSystem.cs b/Content.Shared/_Arcadis/Computer/DiskBurnerSystem.cs index 0856b2fbe6b8..4c368186ef72 100644 --- a/Content.Shared/_Arcadis/Computer/DiskBurnerSystem.cs +++ b/Content.Shared/_Arcadis/Computer/DiskBurnerSystem.cs @@ -87,7 +87,7 @@ private void OnExamined(EntityUid uid, DiskBurnerComponent component, ExaminedEv missing.Add("disk"); if (boardSlot.Item is null) - missing.Add("or"); + missing.Add("board"); args.PushMarkup(Loc.GetString("disk-burner-missing", ("missing", string.Join(", or ", missing)))); return;