diff --git a/apps/home/models.py b/apps/home/models.py index d326f7b..d4b4e76 100644 --- a/apps/home/models.py +++ b/apps/home/models.py @@ -339,8 +339,8 @@ class LeagueRule(models.Model): DID_NOT_WEIGHS = ( (0, "Threshold Points"), # TODO: waiting on description (1, "Worst Place Points"), # The points given for a DNW are equal to the points of last place - (2, "Incremental Points") # A fixed number of points added for a DWN - (2, "Absolute Points") # A fixed number of points given for a DNW + (2, "Incremental Points"), # A fixed number of points added for a DWN + (2, "Absolute Points"), # A fixed number of points given for a DNW (2, "Not Scored") # Don't count to overall points ) did_not_weigh = models.PositiveSmallIntegerField(choices=DID_NOT_WEIGHS)