From 23d42e136c4c9c7a22a5a9c9c96ec0830cedf708 Mon Sep 17 00:00:00 2001 From: Peisong Xiao Date: Tue, 23 Jul 2024 14:31:56 -0400 Subject: [PATCH] fixed typo --- src/game.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/game.cc b/src/game.cc index 2d80423..62a3eaa 100644 --- a/src/game.cc +++ b/src/game.cc @@ -144,7 +144,7 @@ game_result game::run() { case result::GO_UP: { if (curr_level == 0) return {ESCAPED, - "You escaped the dungeon with a score of" + + "You escaped the dungeon with a score of " + str_score() + ". Coward!"}; player->start_turn();