From 72849528ed268df854113c68a3bb3616ed018687 Mon Sep 17 00:00:00 2001 From: Razmig Sarkissian Date: Thu, 8 Aug 2024 17:24:12 +0200 Subject: [PATCH] maj assimilation dame en homme --- PadelClub/Utils/PadelRule.swift | 11 +++++++---- 1 file changed, 7 insertions(+), 4 deletions(-) diff --git a/PadelClub/Utils/PadelRule.swift b/PadelClub/Utils/PadelRule.swift index b5e41a6..394d72a 100644 --- a/PadelClub/Utils/PadelRule.swift +++ b/PadelClub/Utils/PadelRule.swift @@ -724,11 +724,14 @@ enum TournamentCategory: Int, Hashable, Codable, CaseIterable, Identifiable { case 1...10: return 400 case 11...30: return 1000 case 31...60: return 2000 - case 61...100: return 3000 - case 101...200: return 8000 - case 201...500: return 12000 + case 61...100: return 3500 + case 101...200: return 10000 + case 201...500: return 15000 + case 501...1000: return 25000 + case 1001...2000: return 35000 + case 2001...3000: return 45000 default: - return 15000 + return 50000 } }