Skip to content

Commit

Permalink
Move space to the string
Browse files Browse the repository at this point in the history
  • Loading branch information
Uwuewsky committed Dec 5, 2024
1 parent 04cb3d9 commit 82a3ff1
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 82a3ff1

Please sign in to comment.