Skip to content

Commit

Permalink
Update src/map_field.cpp
Browse files Browse the repository at this point in the history
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
  • Loading branch information
GalacticApple and github-actions[bot] authored Jun 23, 2024
1 parent 29072e7 commit 83c7ecf
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/map_field.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1498,7 +1498,8 @@ void map::player_in_field( Character &you )
std::vector<bodypart_id> bps = you.get_ground_contact_bodyparts();
you.add_msg_player_or_npc( m_bad,
string_format( _( "The acid burns your %s!" ), you.string_for_ground_contact_bodyparts( bps ) ),
string_format( _( "The acid burns <npcname>'s %s!" ), you.string_for_ground_contact_bodyparts( bps ) ) );
string_format( _( "The acid burns <npcname>'s %s!" ),
you.string_for_ground_contact_bodyparts( bps ) ) );
} else if( on_ground ) {
you.add_msg_if_player( m_warning, _( "You're lying in a pool of acid!" ) );
} else if( !you.is_immune_field( fd_acid ) ) {
Expand Down

0 comments on commit 83c7ecf

Please sign in to comment.