diff --git a/lib/start_game/bloc/start_game_bloc.dart b/lib/start_game/bloc/start_game_bloc.dart index 254d2927..ba44d88c 100644 --- a/lib/start_game/bloc/start_game_bloc.dart +++ b/lib/start_game/bloc/start_game_bloc.dart @@ -14,14 +14,14 @@ class StartGameBloc extends Bloc { required PinballGame game, }) : _game = game, super(const StartGameState.initial()) { - on(_onStartGame); + on(_onPlayTapped); on(_onCharacterSelected); on(_onHowToPlayFinished); } final PinballGame _game; - void _onStartGame( + void _onPlayTapped( PlayTapped event, Emitter emit, ) {