aboutsummaryrefslogtreecommitdiff
path: root/server/tools
diff options
context:
space:
mode:
Diffstat (limited to 'server/tools')
-rw-r--r--server/tools/src/graph_summary.rs4
1 files changed, 2 insertions, 2 deletions
diff --git a/server/tools/src/graph_summary.rs b/server/tools/src/graph_summary.rs
index c6db2678..3b5c577c 100644
--- a/server/tools/src/graph_summary.rs
+++ b/server/tools/src/graph_summary.rs
@@ -46,8 +46,8 @@ pub(crate) fn graph_summary() -> Result<()> {
let mut nodes = Vec::new();
for r in &data.recipes {
nodes.push(Node {
- inputs: r.inputs(),
- outputs: r.outputs(),
+ inputs: r.inputs().collect(),
+ outputs: r.outputs().collect(),
tool_item: None,
tool_tile: r.tile(),
instant: matches!(r, Recipe::Instant { .. }),