Skip to content

Commit

Permalink
fix: achievement seniority level 1
Browse files Browse the repository at this point in the history
  • Loading branch information
irisdv committed Oct 24, 2023
1 parent e13726b commit 60afe38
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/endpoints/achievements/verify_seniority.rs
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ pub async fn handler(
let duration = current_time - dt;
let days_passed = duration.num_days();

if (achievement_id == 14 && days_passed >= 30)
if (achievement_id == 14 && days_passed >= 90)
|| (achievement_id == 15 && days_passed >= 180)
|| (achievement_id == 16 && days_passed >= 365)
{
Expand Down

0 comments on commit 60afe38

Please sign in to comment.