summaryrefslogtreecommitdiff
path: root/src/encyclopedia.rs
diff options
context:
space:
mode:
authortroido <troido@protonmail.com>2020-04-09 14:37:12 +0200
committertroido <troido@protonmail.com>2020-04-09 14:37:12 +0200
commit8dbe1f51ff1705f97a191197b3ee7cb66b682584 (patch)
tree90a3ed3ca56ee021aeb6198ac833da4e70270bb6 /src/encyclopedia.rs
parent569da2b3f3e15b11be8f67ea4f81aaab4dc58049 (diff)
stricter about what to print
Diffstat (limited to 'src/encyclopedia.rs')
-rw-r--r--src/encyclopedia.rs1
1 files changed, 0 insertions, 1 deletions
diff --git a/src/encyclopedia.rs b/src/encyclopedia.rs
index c74a09f..0df7c70 100644
--- a/src/encyclopedia.rs
+++ b/src/encyclopedia.rs
@@ -159,7 +159,6 @@ impl Encyclopedia {
pub fn construct(&self, template: &Template) -> Result<PreEntity> {
if let Some(new_name) = self.assemblage_substitute.get(&template.name){
- println!("substituting {:?} with {:?}", template.name, new_name);
let mut into = template.clone();
into.name = new_name.clone();
return self.construct(&into);