cast should go on source

This commit is contained in:
ntr 2019-12-06 20:54:20 +10:00
parent 2100ad678e
commit d8d4721a5a

View File

@ -53,7 +53,7 @@ impl Cast {
let mut actions = vec![];
if self.skill.cast_animation() {
actions.push({ Action::Cast { construct: self.target, skill: self.skill }});
actions.push({ Action::Cast { construct: self.source, skill: self.skill }});
}
actions.push(Action::Hit { construct: self.target, skill: self.skill });