Skip to content

Commit

Permalink
fix: typos on new char screen (#65783)
Browse files Browse the repository at this point in the history
for once I played a custom character to try out a mod and hey I found
things to fix

Co-authored-by: casswedson <casswedson@users.noreply.github.com>
  • Loading branch information
casswedson and casswedson committed May 22, 2023
1 parent f0ffa5e commit 1347bdd
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion data/json/scenarios.json
Original file line number Diff line number Diff line change
Expand Up @@ -986,7 +986,7 @@
{
"type": "scenario",
"id": "aircraft_carrier_start",
"name": "Challenge- Aircraft Carrier",
"name": "Challenge - Aircraft Carrier",
"points": 4,
"description": "You were on a mission off the coast of North Korea when the aircraft carrier you were stationed on suddenly and inexplicably found itself in the middle of a lake. You have no idea where you are or what's happened, but you have more important things to worry about: everyone else aboard seems to have become violently insane. It might be time to abandon ship.",
"start_name": "Aircraft Carrier",
Expand Down
2 changes: 1 addition & 1 deletion src/newcharacter.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1778,7 +1778,7 @@ static std::string assemble_profession_details( const avatar &u, const input_con
//Profession story
assembled += "\n" + colorize( _( "Profession story:" ), COL_HEADER ) + "\n";
if( !sorted_profs[cur_id]->can_pick().success() ) {
assembled += colorize( sorted_profs[cur_id]->can_pick().str(), c_red ) + "'n";
assembled += colorize( sorted_profs[cur_id]->can_pick().str(), c_red ) + "\n";
}
assembled += colorize( sorted_profs[cur_id]->description( u.male ), c_green ) + "\n";

Expand Down

0 comments on commit 1347bdd

Please sign in to comment.