Fix broken node input caching

This commit is contained in:
Dennis Kobert 2023-03-03 16:57:21 +01:00 committed by Keavon Chambers
parent 6139e807d0
commit 531438161e

View file

@ -30,7 +30,7 @@ macro_rules! construct_node {
args.reverse();
<$path>::new($(graphene_core::value::ClonedNode::new(
graphene_std::any::input_node::<$type>(args.pop()
.expect("Not enough arguments provided to construct node"))).eval(())
.expect("Not enough arguments provided to construct node")).eval(()))
),*
)
}}