Skip to content

Commit

Permalink
Fixed duplicate "the"
Browse files Browse the repository at this point in the history
  • Loading branch information
Night-Pryanik committed Jan 24, 2020
1 parent fe570fa commit 6310134
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/explosion.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -442,9 +442,9 @@ static std::vector<tripoint> shrapnel( const tripoint &src, int power,
total_hits ),
impact_count, damage_description );
} else {
add_msg( ngettext( "The %s is hit by %s bomb fragment, %s.",
"The %s is hit by %s bomb fragments, %s.", total_hits ),
critter->disp_name(), impact_count, damage_description );
add_msg( ngettext( "%s is hit by %s bomb fragment, %s.",
"%s is hit by %s bomb fragments, %s.", total_hits ),
critter->disp_name( false, true ), impact_count, damage_description );
}
}
}
Expand Down

0 comments on commit 6310134

Please sign in to comment.