feat: temporarily allow the game to be open until 8pm

This commit is contained in:
sBubshait 2025-08-07 11:16:33 +03:00
parent 5e5c6c7346
commit f4abfec73b

View File

@ -64,7 +64,7 @@ class _PuzzlesPageState extends State<PuzzlesPage> {
bool get _isGameAvailable {
final timeUTC3 = _currentTimeUTC3;
final hour = timeUTC3.hour;
return hour >= 9 && hour < 11; // 9 AM to 11 AM UTC+3
return hour >= 9 && hour < 20; // 9 AM to 11 AM UTC+3
}
String get _gameStatusText {