Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
jkraybill committed Feb 9, 2020
1 parent 5aef1ba commit 4aae6af
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/iuse_actor.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -463,7 +463,7 @@ void explosion_iuse::info( const item &, std::vector<iteminfo> &dump ) const
const auto &sd = explosion.shrapnel;
if( sd.casing_mass > 0 ) {
dump.emplace_back( "TOOL", _( "Casing <bold>mass</bold>: " ), sd.casing_mass );
dump.emplace_back( "TOOL", _( "Fragment <bold>mass</bold>: " ), sd.fragment_mass );
dump.emplace_back( "TOOL", _( "Fragment <bold>mass</bold>: " ), string_format( "%.2f", sd.fragment_mass ) );
}
}

Expand Down

0 comments on commit 4aae6af

Please sign in to comment.