Skip to content

Commit

Permalink
Correct duplicated period where signame is invoked (#46095)
Browse files Browse the repository at this point in the history
  • Loading branch information
ToxiClay authored Dec 17, 2020
1 parent bcad67d commit 56e7545
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/item.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -3804,11 +3804,11 @@ void item::final_info( std::vector<iteminfo> &info, const iteminfo_query *parts,

std::string signame;
if( has_flag( flag_RADIOSIGNAL_1 ) ) {
signame = "<color_c_red>red</color> radio signal.";
signame = _( "<color_c_red>red</color> radio signal" );
} else if( has_flag( flag_RADIOSIGNAL_2 ) ) {
signame = "<color_c_blue>blue</color> radio signal.";
signame = _( "<color_c_blue>blue</color> radio signal" );
} else if( has_flag( flag_RADIOSIGNAL_3 ) ) {
signame = "<color_c_green>green</color> radio signal.";
signame = _( "<color_c_green>green</color> radio signal" );
}
if( parts->test( iteminfo_parts::DESCRIPTION_RADIO_ACTIVATION_CHANNEL ) ) {
info.emplace_back( "DESCRIPTION",
Expand Down

0 comments on commit 56e7545

Please sign in to comment.