Skip to content

Commit

Permalink
Merge pull request #35974 from DaviBones/fix-errant-periods
Browse files Browse the repository at this point in the history
Remove a couple of redundant periods
  • Loading branch information
ZhilkinSerg authored Dec 9, 2019
2 parents eed5498 + 74b1aa0 commit 09ce27f
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/npctalk.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -461,7 +461,7 @@ void game::chat()
.identifier( "sentence" )
.max_length( 128 )
.query();
yell_msg = popup.text() + ".";
yell_msg = popup.text();
is_order = false;
break;
}
Expand Down
2 changes: 1 addition & 1 deletion src/sounds.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -444,7 +444,7 @@ void sounds::process_sound_markers( player *p )
}
// if we can see it, don't print a direction
if( pos == p->pos() ) {
add_msg( severity, _( "From your position you hear %1$s." ), description );
add_msg( severity, _( "From your position you hear %1$s" ), description );
} else if( p->sees( pos ) ) {
add_msg( severity, _( "You hear %1$s" ), description );
} else {
Expand Down

0 comments on commit 09ce27f

Please sign in to comment.