From d48717db010722fc43d6aaf8e3ff207de3a6d0a2 Mon Sep 17 00:00:00 2001 From: dabbolt <60310658+dabbolt@users.noreply.github.com> Date: Thu, 28 Sep 2023 10:19:40 -0400 Subject: [PATCH] Change climbing warning display to properly show color (#68355) * Update game.cpp * Add new line --- src/game.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/game.cpp b/src/game.cpp index 5fabc6bf27866..710c57e62bcd4 100644 --- a/src/game.cpp +++ b/src/game.cpp @@ -13374,7 +13374,7 @@ void game::climb_down_using( const tripoint &examp, climbing_aid_id aid_id, bool } else if( damage_estimate >= 5 ) { hint_fall_damage = _( "Falling would hurt." ); } else { - hint_fall_damage = _( "Falling wouldn't hurt much." ); + hint_fall_damage = _( "Falling wouldn't hurt much." ); } query += "\n"; query += hint_fall_damage; @@ -13413,7 +13413,7 @@ void game::climb_down_using( const tripoint &examp, climbing_aid_id aid_id, bool if( !aid.down.confirm_text.empty() ) { query_prompt = aid.down.confirm_text.translated(); } - query += "\n"; + query += "\n\n"; query += query_prompt; add_msg_debug( debugmode::DF_GAME, "Generated climb_down prompt for the player." );