Skip to content

Commit 47ba81d

Browse files
style(autofix.ci): automated formatting
1 parent ab84b00 commit 47ba81d

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/proc_ui.cpp

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -92,7 +92,7 @@ auto gather_inventory_sources( Character &who, const proc::schema &sch ) -> sour
9292
.uses = it->count_by_charges() ? std::max( it->charges, 1 ) : 1
9393
} );
9494
if( std::ranges::none_of( sch.slots, [&]( const proc::slot_data & slot ) {
95-
return proc::matches_slot( slot, entry.fact );
95+
return proc::matches_slot( slot, entry.fact );
9696
} ) ) {
9797
return;
9898
}
@@ -261,10 +261,10 @@ auto proc::open_builder( Character &who, const recipe &rec ) -> std::optional<ui
261261
}
262262

263263
const auto facts = source_data.entries
264-
| std::views::transform( []( const source_entry & entry ) {
264+
| std::views::transform( []( const source_entry & entry ) {
265265
return entry.fact;
266266
} )
267-
| std::ranges::to<std::vector>();
267+
| std::ranges::to<std::vector>();
268268
auto state = proc::build_state( sch, facts );
269269
if( source_data.entries.empty() ) {
270270
popup( _( "No nearby items match this procedural recipe." ) );

0 commit comments

Comments
 (0)