diff --git a/lib/presentation/views/main_menu/create_game/create_game_view.dart b/lib/presentation/views/main_menu/create_game/create_game_view.dart index 4e7c227..59e3c0d 100644 --- a/lib/presentation/views/main_menu/create_game/create_game_view.dart +++ b/lib/presentation/views/main_menu/create_game/create_game_view.dart @@ -245,7 +245,7 @@ class _CreateGameViewState extends State { bool _enableCreateGameButton() { return _gameNameController.text.isNotEmpty && (selectedGroup != null || - (selectedPlayers != null && selectedPlayers!.isNotEmpty)) && + (selectedPlayers != null && selectedPlayers!.length > 1)) && selectedRuleset != null; } }