File tree Expand file tree Collapse file tree 2 files changed +7
-4
lines changed Expand file tree Collapse file tree 2 files changed +7
-4
lines changed Original file line number Diff line number Diff line change @@ -28,11 +28,14 @@ public class Replay : IEntityTypeConfiguration<Replay>
28
28
public List < ReplayParticipant > ? RoundParticipants { get ; set ; }
29
29
public string ? RoundEndText { get ; set ; }
30
30
public required string ServerId { get ; set ; }
31
+ // Doesn't need to be a long because at 30TPS that's 828 days.
32
+ // Unless we get round saving and it restores the tick count?
33
+ // - November 2024
31
34
public int EndTick { get ; set ; }
32
35
public required string Duration { get ; set ; }
33
36
public int FileCount { get ; set ; }
34
- public int Size { get ; set ; }
35
- public int UncompressedSize { get ; set ; }
37
+ public long Size { get ; set ; }
38
+ public long UncompressedSize { get ; set ; }
36
39
public required string EndTime { get ; set ; }
37
40
38
41
[ JsonIgnore ]
Original file line number Diff line number Diff line change @@ -25,7 +25,7 @@ public class YamlReplay {
25
25
public int EndTick { get ; set ; }
26
26
public required string Duration { get ; set ; }
27
27
public int FileCount { get ; set ; }
28
- public int Size { get ; set ; }
29
- public int UncompressedSize { get ; set ; }
28
+ public long Size { get ; set ; }
29
+ public long UncompressedSize { get ; set ; }
30
30
public required string EndTime { get ; set ; }
31
31
}
You can’t perform that action at this time.
0 commit comments