Minor DRG updates

This commit is contained in:
Liza 2024-11-03 20:42:33 +01:00
parent b02a24ee32
commit fb0180ce3b
Signed by: liza
GPG Key ID: 7199F8D727D55F67
2 changed files with 161 additions and 153 deletions

View File

@ -150,7 +150,14 @@
"Z": 346.45605 "Z": 346.45605
}, },
"TerritoryId": 155, "TerritoryId": 155,
"InteractionType": "CompleteQuest" "InteractionType": "CompleteQuest",
"DialogueChoices": [
{
"Type": "List",
"Prompt": "TEXT_JOBDRG560_01693_Q1_000_000",
"Answer": "TEXT_JOBDRG560_01693_A1_000_002"
}
]
} }
] ]
} }

View File

@ -325,6 +325,7 @@ internal static class MoveTo
internal sealed class LandTask : ITask internal sealed class LandTask : ITask
{ {
public bool ShouldRedoOnInterrupt() => true; public bool ShouldRedoOnInterrupt() => true;
public override string ToString() => "Land";
} }
internal sealed class LandExecutor(IClientState clientState, ICondition condition, ILogger<LandExecutor> logger) : TaskExecutor<LandTask> internal sealed class LandExecutor(IClientState clientState, ICondition condition, ILogger<LandExecutor> logger) : TaskExecutor<LandTask>