Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 4 additions & 1 deletion src/D2BotNG/Engine/Handoff/HandoffManifest.cs
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,10 @@ public class HandoffProfile

[JsonPropertyName("proxyName")] public string? ProxyName { get; set; }

[JsonPropertyName("crashCount")] public int CrashCount { get; set; }
// Renamed from "crashCount" when the retry budget was scoped to launch failures. A manifest
// written by an older predecessor simply won't bind this, leaving 0 — a fresh budget, which
// is the permissive direction.
[JsonPropertyName("launchFailureCount")] public int LaunchFailureCount { get; set; }

[JsonPropertyName("startedAt")] public DateTime? StartedAt { get; set; }

Expand Down
Loading
Loading