Skip to content

Commit

Permalink
awards: reword smuggler's key description
Browse files Browse the repository at this point in the history
  • Loading branch information
rr- committed Sep 10, 2023
1 parent ac1e388 commit 024213a
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions backend/trcustoms/awards/specs/smugglers_key.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,17 +9,17 @@

def smugglers_key() -> Iterable[AwardSpec]:
min_levels = 5
max_review_age = timedelta(hours=24)
max_hours = 24

yield AwardSpec(
code="smugglers_key",
title="Smuggler's Key",
description=(
f"You reviewed {min_levels} levels on the same "
f"You reviewed {min_levels} levels within {max_hours} hours"
"or next day of release."
),
requirement=AuthoredReviewsTimingAwardRequirement(
min_levels=min_levels,
max_review_age=max_review_age,
max_review_age=timedelta(hours=max_hours),
),
)

0 comments on commit 024213a

Please sign in to comment.