From 50ddeff59aa9ee3f18ad07de4748358f1e35f04a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Maximilian=20Ke=C3=9Fler?= Date: Fri, 17 Nov 2023 09:28:31 +0100 Subject: [PATCH] more consistent wording in output --- src/command_line_interface.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/command_line_interface.cpp b/src/command_line_interface.cpp index 6a16026..e7fbc53 100644 --- a/src/command_line_interface.cpp +++ b/src/command_line_interface.cpp @@ -136,8 +136,8 @@ namespace Hanabi { if (not printed_replay_end_msg) { - std::cout << "Draw pile size of " << game.state->draw_pile_size() - 1 - << " or lower cannot be obtained with the specified replay:" << std::endl; + std::cout << "Specified draw pile size of " << game.state->draw_pile_size() - 1 + << " cannot be reached with specified replay." << std::endl; std::cout << "Replay ends at turn " << game.cur_turn() << " with score of " << game.state->score() << "." << std::endl; printed_replay_end_msg = true;