Skip to content

Commit

Permalink
Merge pull request CleverRaven#78352 from Uwuewsky/diamond-no-space
Browse files Browse the repository at this point in the history
Move a space into the `diamond` flag string
  • Loading branch information
Night-Pryanik authored Dec 5, 2024
2 parents d3e7c94 + 82a3ff1 commit 29a8021
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/item_tname.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -523,7 +523,7 @@ std::string weapon_mods( item const &it, unsigned int /* quantity */,
modtext += _( "pistol " );
}
if( it.has_flag( flag_DIAMOND ) ) {
modtext += std::string( pgettext( "Adjective, as in diamond katana", "diamond" ) ) + " ";
modtext += pgettext( "Adjective, as in diamond katana", "diamond " );
}
return modtext;
}
Expand Down

0 comments on commit 29a8021

Please sign in to comment.