Skip to content

Commit

Permalink
Add periods so Sadenar doesn't get angey
Browse files Browse the repository at this point in the history
  • Loading branch information
Procyonae committed Jun 11, 2024
1 parent 6b49510 commit cd801ff
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/construction.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -2088,7 +2088,7 @@ void construct::do_turn_deconstruct( const tripoint_bub_ms &p, Character &who )
if( !!f.deconstruct.skill &&
deconstruction_will_practice_skill( *f.deconstruct.skill ) ) {
cancel_construction = !who.query_yn(
_( "Deconstructing the %s will yield:\n%s\nYou feel you might also learn something about %s\nReally deconstruct?" ),
_( "Deconstructing the %s will yield:\n%s\nYou feel you might also learn something about %s.\nReally deconstruct?" ),
f.name(), deconstruct_items( f.deconstruct.drop_group ), f.deconstruct.skill->id.obj().name() );
} else {
cancel_construction = !who.query_yn(
Expand All @@ -2100,7 +2100,7 @@ void construct::do_turn_deconstruct( const tripoint_bub_ms &p, Character &who )
if( !!t.deconstruct.skill &&
deconstruction_will_practice_skill( *t.deconstruct.skill ) ) {
cancel_construction = !who.query_yn(
_( "Deconstructing the %s will yield:\n%s\nYou feel you might also learn something about %s\nReally deconstruct?" ),
_( "Deconstructing the %s will yield:\n%s\nYou feel you might also learn something about %s.\nReally deconstruct?" ),
t.name(), deconstruct_items( t.deconstruct.drop_group ), t.deconstruct.skill->id.obj().name() );
} else {
cancel_construction = !who.query_yn(
Expand Down

0 comments on commit cd801ff

Please sign in to comment.