From f40665d2b1653dcf2f7ef6a5a9a3ed6888100fa6 Mon Sep 17 00:00:00 2001 From: pohky Date: Thu, 9 Dec 2021 17:28:02 +0100 Subject: [PATCH] Update AetheryteListAgingStep.cs fix copy pasta --- .../Windows/SelfTest/AgingSteps/AetheryteListAgingStep.cs | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/Dalamud/Interface/Internal/Windows/SelfTest/AgingSteps/AetheryteListAgingStep.cs b/Dalamud/Interface/Internal/Windows/SelfTest/AgingSteps/AetheryteListAgingStep.cs index b9a9beaf9..4035f860b 100644 --- a/Dalamud/Interface/Internal/Windows/SelfTest/AgingSteps/AetheryteListAgingStep.cs +++ b/Dalamud/Interface/Internal/Windows/SelfTest/AgingSteps/AetheryteListAgingStep.cs @@ -34,6 +34,11 @@ namespace Dalamud.Interface.Internal.Windows.SelfTest.AgingSteps return SelfTestStepResult.Waiting; } + if (aetheryte.AetheryteId == 0) + { + return SelfTestStepResult.Fail; + } + Util.ShowObject(aetheryte); return SelfTestStepResult.Waiting;