Skip to content

Conversation

@fgardt
Copy link
Owner

@fgardt fgardt commented Oct 21, 2025

No description provided.

@fgardt fgardt enabled auto-merge (squash) October 21, 2025 03:15
@fgardt fgardt force-pushed the push-kyqvustnzvpy branch from 1d6386e to a514b19 Compare October 21, 2025 03:27
position: (&value.position).into(),
direction: value.direction,
orientation: value.extra_data.orientation(),
orientation: value.extra_data.as_ref().and_then(|ed| ed.orientation()),

Check warning

Code scanning / clippy

redundant closure Warning

redundant closure
.belt_connection_type()
.as_ref()
.map(|&t| t == blueprint::BeltConnectionType::Input),
.and_then(|ed| ed.belt_connection_type())

Check warning

Code scanning / clippy

redundant closure Warning

redundant closure
// filter icons / priority arrows
'filters_priority: {
if let Some(prio_in) = &e.extra_data.input_priority()
if let Some(prio_in) = &e.extra_data.as_ref().and_then(|ed| ed.input_priority())

Check warning

Code scanning / clippy

redundant closure Warning

redundant closure
}

if let Some(prio_out) = &e.extra_data.output_priority()
if let Some(prio_out) = &e.extra_data.as_ref().and_then(|ed| ed.output_priority())

Check warning

Code scanning / clippy

redundant closure Warning

redundant closure
.belt_connection_type()
.as_ref()
.map(|&t| t == blueprint::BeltConnectionType::Output);
.and_then(|ed| ed.belt_connection_type())

Check warning

Code scanning / clippy

redundant closure Warning

redundant closure
@fgardt fgardt merged commit ac32368 into main Oct 21, 2025
11 checks passed
@fgardt fgardt deleted the push-kyqvustnzvpy branch October 21, 2025 04:08
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Projects

None yet

Development

Successfully merging this pull request may close these issues.

2 participants