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 Nov 11, 2023
1 parent f4c318d commit 8d51060
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/character.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -10294,7 +10294,7 @@ std::vector<detached_ptr<item>> Character::use_charges( const itype_id &what, in
e->ammo_consume( n, p );
} else {
detached_ptr<item> split = item::spawn( *e );
split->ammo_set(e->ammo_current(), n);
split->ammo_set( e->ammo_current(), n );
e->ammo_consume( n, p );
res.push_back( std::move( split ) );
}
Expand Down
2 changes: 1 addition & 1 deletion src/item.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -8631,7 +8631,7 @@ detached_ptr<item> item::use_charges( detached_ptr<item> &&self, const itype_id
e->ammo_consume( n, pos );
} else {
detached_ptr<item> split = item::spawn( *e );
split->ammo_set(e->ammo_current(), n);
split->ammo_set( e->ammo_current(), n );
e->ammo_consume( n, pos );
used.push_back( std::move( split ) );
}
Expand Down

0 comments on commit 8d51060

Please sign in to comment.