From b597d2279db7beb0d619fac472481b7f707609c8 Mon Sep 17 00:00:00 2001 From: troido Date: Thu, 2 Apr 2020 16:07:32 +0200 Subject: built doors --- src/systems/attacking.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/systems/attacking.rs') diff --git a/src/systems/attacking.rs b/src/systems/attacking.rs index 4318695..e4001c9 100644 --- a/src/systems/attacking.rs +++ b/src/systems/attacking.rs @@ -64,7 +64,7 @@ impl <'a> System<'a> for Attacking { } if let Some(position) = positions.get(ent){ if wounded { - new.create(position.pos, Template::empty("wound")).unwrap(); + new.create(position.pos, &Template::empty("wound")).unwrap(); } } } -- cgit