diff options
Diffstat (limited to 'src/systems/take.rs')
| -rw-r--r-- | src/systems/take.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/systems/take.rs b/src/systems/take.rs index affa3d1..bf0f8e8 100644 --- a/src/systems/take.rs +++ b/src/systems/take.rs @@ -53,7 +53,7 @@ impl <'a> System<'a> for Take { } Control::Drop(_rank) => { if let Some(item) = inventory.items.pop() { - new.templates.push((position.pos, item.ent)); + let _ = new.create(position.pos, item.ent); } } _ => {} |
