Skip to content

Commit

Permalink
Add space in cashcard displayname (CleverRaven#64026)
Browse files Browse the repository at this point in the history
  • Loading branch information
Kromgart authored Mar 7, 2023
1 parent 4e593a0 commit 24aad5a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/item.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -6731,7 +6731,7 @@ std::string item::display_name( unsigned int quantity ) const

if( amount || show_amt ) {
if( is_money() ) {
amt = format_money( amount );
amt = " " + format_money( amount );
} else {
if( !ammotext.empty() ) {
ammotext = " " + ammotext;
Expand Down

0 comments on commit 24aad5a

Please sign in to comment.