Handle certain interaction interruptions

pull/51/head
Liza 2024-09-20 11:56:57 +02:00
parent e87b7df4c2
commit 14257c73ac
Signed by: liza
GPG Key ID: 7199F8D727D55F67
2 changed files with 3 additions and 1 deletions

View File

@ -15,7 +15,7 @@
"Y": -137.174, "Y": -137.174,
"Z": 559.47205 "Z": 559.47205
}, },
"StopDistance": 5, "StopDistance": 7,
"TerritoryId": 1189, "TerritoryId": 1189,
"InteractionType": "AcceptQuest" "InteractionType": "AcceptQuest"
} }

View File

@ -292,6 +292,8 @@ internal static class MoveTo
{ {
} }
public bool ShouldRedoOnInterrupt() => true;
public override string ToString() => $"MoveTo({Destination.ToString("G", CultureInfo.InvariantCulture)})"; public override string ToString() => $"MoveTo({Destination.ToString("G", CultureInfo.InvariantCulture)})";
} }