summaryrefslogtreecommitdiff
path: root/src/systems/trapping.rs
diff options
context:
space:
mode:
authortroido <troido@protonmail.com>2020-02-24 12:38:23 +0100
committertroido <troido@protonmail.com>2020-02-24 12:38:23 +0100
commit715c9106dbff4524f3fdf5d23f762e5e6518e0cb (patch)
treecf5dc0c5d30fc9ba7e38bdff40907fe4a96261a2 /src/systems/trapping.rs
parent4718cfdc7c2bf67d2389ca18ab035fe5a0887ff0 (diff)
healing works now too, the first time based system
Diffstat (limited to 'src/systems/trapping.rs')
-rw-r--r--src/systems/trapping.rs4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/systems/trapping.rs b/src/systems/trapping.rs
index 5e0921e..d6902a8 100644
--- a/src/systems/trapping.rs
+++ b/src/systems/trapping.rs
@@ -9,7 +9,7 @@ use specs::{
};
use crate::{
- components::{Health, Attacked, add_attack, Moved, Entered, Trap, Position},
+ components::{Health, Attacked, Moved, Entered, Trap, Position},
resources::Ground
};
@@ -31,7 +31,7 @@ impl <'a> System<'a> for Trapping {
for (entity, _entered, trap, position) in (&entities, &entereds, &traps, &positions).join() {
for ent in ground.cells.get(&position.pos).unwrap(){
if ent != &entity && moves.contains(*ent) && healths.contains(*ent) {
- add_attack(&mut victims, *ent, trap.attack.clone());
+ Attacked::add_attack(&mut victims, *ent, trap.attack.clone());
}
}
}