Skip to content

Commit

Permalink
Fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
Qrox committed Jan 6, 2020
1 parent 921a9f4 commit 4493717
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/avatar.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -324,7 +324,7 @@ const player *avatar::get_book_reader( const item &book, std::vector<std::string
// Low morale still permits skimming
reasons.push_back( string_format( _( "%s morale is too low!" ), elem->disp_name( true ) ) );
} else if( elem->is_blind() ) {
reasons.push_back( string_format( _( "% is blind." ), elem->disp_name( true ) ) );
reasons.push_back( string_format( _( "%s is blind." ), elem->disp_name() ) );
} else {
int proj_time = time_to_read( book, *elem );
if( proj_time < time_taken ) {
Expand Down

0 comments on commit 4493717

Please sign in to comment.