Remove points limit

This commit is contained in:
2026-01-09 19:02:08 +07:00
parent 76de7ccbdb
commit cd78a99ce7
5 changed files with 5 additions and 16 deletions

View File

@@ -366,7 +366,7 @@ async def save_challenges(
description=ch_data.description,
type=ch_type,
difficulty=difficulty,
points=max(1, min(500, ch_data.points)),
points=max(1, ch_data.points),
estimated_time=ch_data.estimated_time,
proof_type=proof_type,
proof_hint=ch_data.proof_hint,