From: Liza Carvelli Date: Fri, 20 Sep 2024 09:56:57 +0000 (+0200) Subject: Handle certain interaction interruptions X-Git-Tag: v3.6~15 X-Git-Url: https://git.jacobcasper.com/?a=commitdiff_plain;h=14257c73acd1a4c6e07a99caba25a989f5a85ef1;p=Questionable.git Handle certain interaction interruptions --- diff --git a/QuestPaths/7.x - Dawntrail/MSQ/C-Yak T'el/4909_Road to the Golden City.json b/QuestPaths/7.x - Dawntrail/MSQ/C-Yak T'el/4909_Road to the Golden City.json index 39387ac5..efabe8be 100644 --- a/QuestPaths/7.x - Dawntrail/MSQ/C-Yak T'el/4909_Road to the Golden City.json +++ b/QuestPaths/7.x - Dawntrail/MSQ/C-Yak T'el/4909_Road to the Golden City.json @@ -15,7 +15,7 @@ "Y": -137.174, "Z": 559.47205 }, - "StopDistance": 5, + "StopDistance": 7, "TerritoryId": 1189, "InteractionType": "AcceptQuest" } diff --git a/Questionable/Controller/Steps/Shared/MoveTo.cs b/Questionable/Controller/Steps/Shared/MoveTo.cs index 92aa6d07..bd62ea13 100644 --- a/Questionable/Controller/Steps/Shared/MoveTo.cs +++ b/Questionable/Controller/Steps/Shared/MoveTo.cs @@ -292,6 +292,8 @@ internal static class MoveTo { } + public bool ShouldRedoOnInterrupt() => true; + public override string ToString() => $"MoveTo({Destination.ToString("G", CultureInfo.InvariantCulture)})"; }