fix: Handle weather step for proximity (#2480)

This commit is contained in:
Zoinkwiz
2025-12-04 10:45:34 +00:00
committed by GitHub
parent 84e234f59c
commit c155876a39

View File

@@ -25,6 +25,7 @@
package com.questhelper.helpers.activities.charting;
import com.google.inject.Inject;
import com.questhelper.helpers.activities.charting.steps.ChartingWeatherStep;
import com.questhelper.questhelpers.QuestHelper;
import com.questhelper.requirements.Requirement;
import com.questhelper.requirements.runelite.RuneliteRequirement;
@@ -86,6 +87,10 @@ public class ChartingConditionalStep extends ReorderableConditionalStep
{
detailedStep = (DetailedQuestStep) ((PuzzleWrapperStep) step).getSolvingStep();
}
else if (step instanceof ChartingWeatherStep)
{
detailedStep = ((ChartingWeatherStep) step).getTalkToNpcStep();
}
else
{
continue;