Skip to content

Commit

Permalink
style(autofix.ci): automated formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
autofix-ci[bot] authored Jul 23, 2024
1 parent 7d027aa commit b056d51
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/newcharacter.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -3242,7 +3242,7 @@ void character_preview_window::init( Character *character )
character->get_mutations() );
for( detached_ptr<item> &it : prof_items ) {
if( it->is_armor() ) {
clothes.push_back( std::move(it) );
clothes.push_back( std::move( it ) );
}
}
toggle_clothes();
Expand Down Expand Up @@ -3341,7 +3341,7 @@ void character_preview_window::toggle_clothes()
character->worn_clear();
} else {
for( detached_ptr<item> &it : clothes ) {
character->wear_item( item::spawn( *std::move(it) ), false );
character->wear_item( item::spawn( *std::move( it ) ), false );
}
}
show_clothes = !show_clothes;
Expand Down

0 comments on commit b056d51

Please sign in to comment.