0
0
mirror of https://github.com/sp-tarkov/modules.git synced 2025-02-13 09:50:43 -05:00
Dev ab2a9bbb40 Reworked ScavLateStart patch
Removed majority of logic from client code in favour of having it in server
Targets different method, method_43
Processes changes provided by server
2023-12-03 11:16:18 +00:00

21 lines
572 B
C#

using System.Collections.Generic;
namespace Aki.SinglePlayer.Patches.ScavMode
{
public class RaidTimeResponse
{
public int RaidTimeMinutes { get; set; }
public int? NewSurviveTimeSeconds { get; set; }
public int OriginalSurvivalTimeSeconds { get; set; }
public List<ExitChanges> ExitChanges { get; set; }
}
public class ExitChanges
{
public string Name{ get; set; }
public int? MinTime { get; set; }
public int? MaxTime { get; set; }
public int? Chance { get; set; }
}
}