diff --git a/server/src/web.rs b/server/src/web.rs index de66482..01331fd 100644 --- a/server/src/web.rs +++ b/server/src/web.rs @@ -406,7 +406,7 @@ fn stats_seven_days(state: Arc) -> BoxedFilter<(impl Reply, )> { fn contribute(state: Arc) -> BoxedFilter<(impl Reply, )> { async fn logic(state: Arc, listing: PartyFinderListing) -> std::result::Result { - if listing.created_world >= 10_000 || listing.home_world >= 10_000 || listing.current_world >= 10_000 { + if listing.created_world >= 1_000 || listing.home_world >= 1_000 || listing.current_world >= 1_000 { return Ok("invalid listing".to_string()); }