From b6edf5b3d734ec236128e3dd1b57e3c3baf73cad Mon Sep 17 00:00:00 2001 From: Tyfon <29051038+tyfon7@users.noreply.github.com> Date: Mon, 10 Jun 2024 13:31:58 -0700 Subject: [PATCH] Allow context menu repairing of broken items --- RepairInteractions.cs | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/RepairInteractions.cs b/RepairInteractions.cs index 64d61eb..dfe3af9 100644 --- a/RepairInteractions.cs +++ b/RepairInteractions.cs @@ -119,10 +119,12 @@ namespace UIFixes return new FailedResult(ERepairStatusWarning.NothingToRepair.ToString()); } - if (repairStrategy.BrokenItemError()) + // BrokenItemError is not actually an error, they just implemented it that way - it shows a bunch of red text but it doesn't prevent repair + // Leaving this here to remember + /*if (repairStrategy.BrokenItemError()) { return new FailedResult(ERepairStatusWarning.BrokenItem.ToString()); - } + }*/ if (repairStrategy.IsNoCorrespondingArea()) {