added MaxPointsReason.TLE/NSC

This commit is contained in:
Axel Uhl
2021-02-26 15:27:19 +01:00
parent 3f53af9ea7
commit 06b6f9d5c7
4 changed files with 13 additions and 1 deletions
@@ -52,7 +52,10 @@ public enum MaxPointsReason {
/** Disqualified after causing a tangle in an incident */
DCT(/* discardable */ true, /* advanceCompetitorsTrackedWorse */ true, /* appliesAtStartOfRace */ false),
/** Retired after causing a tangle */
RCT(/* discardable */ true, /* advanceCompetitorsTrackedWorse */ true, /* appliesAtStartOfRace */ false);
RCT(/* discardable */ true, /* advanceCompetitorsTrackedWorse */ true, /* appliesAtStartOfRace */ false),
/** Did not sail the course */
NSC(/* discardable */ true, /* advanceCompetitorsTrackedWorse */ true, /* appliesAtStartOfRace */ false)
;
private final boolean discardable;