removeall

This commit is contained in:
ntr 2019-12-09 15:52:49 +10:00
parent 3fafad8504
commit c5c6169806
2 changed files with 5 additions and 5 deletions

View File

@ -863,7 +863,7 @@ pub enum Value {
// Skills { construct: Uuid, colour: Colour }, // Skills { construct: Uuid, colour: Colour },
} }
#[derive(Debug,Clone,PartialEq,Serialize,Deserialize)] #[derive(Debug,PartialEq)]
pub enum Action { pub enum Action {
Hit, Hit,
Cast, Cast,

View File

@ -552,7 +552,7 @@ impl Cast {
], ],
Skill::Purge => vec![ Skill::Purge => vec![
Action::Purge { Action::RemoveAll {
construct: self.target, construct: self.target,
}, },
Action::Effect { Action::Effect {
@ -561,7 +561,7 @@ impl Cast {
}, },
], ],
Skill::PurgePlus => vec![ Skill::PurgePlus => vec![
Action::Purge { Action::RemoveAll {
construct: self.target, construct: self.target,
}, },
Action::Effect { Action::Effect {
@ -570,7 +570,7 @@ impl Cast {
}, },
], ],
Skill::PurgePlusPlus => vec![ Skill::PurgePlusPlus => vec![
Action::Purge { Action::RemoveAll {
construct: self.target, construct: self.target,
}, },
Action::Effect { Action::Effect {