We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3801f1d commit ee2f7d6Copy full SHA for ee2f7d6
src/main/java/com/faforever/api/data/domain/Game.java
@@ -38,6 +38,7 @@ public class Game {
38
private int id;
39
private OffsetDateTime startTime;
40
private OffsetDateTime endTime;
41
+ private Integer replayTicks;
42
private VictoryCondition victoryCondition;
43
private FeaturedMod featuredMod;
44
private Player host;
@@ -60,6 +61,11 @@ public OffsetDateTime getStartTime() {
60
61
return startTime;
62
}
63
64
+ @Column(name = "replay_ticks")
65
+ public Integer getReplayTicks() {
66
+ return replayTicks;
67
+ }
68
+
69
@Column(name = "gameType")
70
public VictoryCondition getVictoryCondition() {
71
return victoryCondition;
0 commit comments