summaryrefslogtreecommitdiff
path: root/src/parameterexpression.rs
diff options
context:
space:
mode:
authortroido <troido@protonmail.com>2020-09-26 14:05:14 +0200
committertroido <troido@protonmail.com>2020-09-26 14:05:14 +0200
commit9b7e3d14b3f35163199ed704ae35544fa658931e (patch)
tree9ad3623420f34b48f538ff2ceca6e3a277f16758 /src/parameterexpression.rs
parent450cf9331803532cb0e3a002fec17d12be18abd6 (diff)
spawned entities are now saved but not spawned again until removed
Diffstat (limited to 'src/parameterexpression.rs')
-rw-r--r--src/parameterexpression.rs3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/parameterexpression.rs b/src/parameterexpression.rs
index b8d1cba..5a313f7 100644
--- a/src/parameterexpression.rs
+++ b/src/parameterexpression.rs
@@ -57,7 +57,8 @@ impl ParameterExpression {
.map(
|(k, v)|
Some((k.clone(), v.evaluate_(arguments, template, nesting+1)?)))
- .collect::<Option<HashMap<String, Parameter>>>()?
+ .collect::<Option<HashMap<String, Parameter>>>()?,
+ clan: None
}))
}
Self::Argument(argname) => {