Skip to content

Commit

Permalink
Merge pull request #42402 from Qrox/fix-typo
Browse files Browse the repository at this point in the history
Fix typos in advanced_inv.cpp
  • Loading branch information
ZhilkinSerg authored Jul 23, 2020
2 parents 18cf056 + 17c289a commit a82b06f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/advanced_inv.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -852,11 +852,11 @@ bool advanced_inventory::move_all_items( bool nested_call )
map &here = get_map();
if( spane.get_area() == AIM_INVENTORY || spane.get_area() == AIM_WORN ) {
if( dpane.get_area() == AIM_INVENTORY ) {
popup( _( "You try to put you bags into themselves, but physics won't let you." ) );
popup( _( "You try to put your bags into themselves, but physics won't let you." ) );
return false;
} else if( dpane.get_area() == AIM_WORN ) {
// TODO: implement this
popup( _( "Putting on everything from you inventory would be tricky." ) );
popup( _( "Putting on everything from your inventory would be tricky." ) );
return false;
} else if( dpane.get_area() == AIM_CONTAINER ) {
// TODO: implement this
Expand Down

0 comments on commit a82b06f

Please sign in to comment.