diff --git a/src/command_line_interface.cpp b/src/command_line_interface.cpp index 1b4b623..3e966db 100644 --- a/src/command_line_interface.cpp +++ b/src/command_line_interface.cpp @@ -220,12 +220,12 @@ namespace Hanabi quiet_os << "Visited " << game.state->enumerated_states() << " states." << std::endl; quiet_os << "Enumerated " << game.state->position_tablebase().size() << " unique game states. " << std::endl; - // If specified, we can now launch the interactive shell - if (parms.interactive.value_or(!parms.quiet)) - { - quiet_os << "\nDropping into interactive command line to explore result (type 'help'):" << std::endl; - cli(game); - } + } + // If specified, we can now launch the interactive shell + if (parms.interactive.value_or(!parms.quiet)) + { + quiet_os << "\nDropping into interactive command line to explore result (type 'help'):" << std::endl; + cli(game); } return EXIT_SUCCESS; }