mirror of
https://github.com/MaaAssistantArknights/MaaAssistantArknights.git
synced 2026-07-19 10:32:19 +08:00
fix: 战斗次数识别错误缓解
This commit is contained in:
@@ -864,12 +864,12 @@ public class FightSettingsUserControlModel : TaskViewModel
|
||||
public class FightTimes
|
||||
{
|
||||
[JsonProperty("sanity_cost")]
|
||||
public int SanityCost { get; set; }
|
||||
public int SanityCost { get; set; } = -1;
|
||||
|
||||
[JsonProperty("series")]
|
||||
public int Series { get; set; }
|
||||
public int Series { get; set; } = -1;
|
||||
|
||||
[JsonProperty("times_finished")]
|
||||
public int TimesFinished { get; set; }
|
||||
public int TimesFinished { get; set; } = -1;
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user