diff options
author | Alexander Foremny <aforemny@posteo.de> | 2024-03-19 05:14:57 +0100 |
---|---|---|
committer | Alexander Foremny <aforemny@posteo.de> | 2024-03-19 05:14:57 +0100 |
commit | 6805c6db39c1a9409b39aaf601f78db92b684c0d (patch) | |
tree | 2f9657d97c3b188a82c07cf228c9def712223414 /src/shared/champion.rs | |
parent | ee2bc9dca88e52b92a49a9ff21db8832b3b66255 (diff) |
feat: pull ability
Diffstat (limited to 'src/shared/champion.rs')
-rw-r--r-- | src/shared/champion.rs | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/shared/champion.rs b/src/shared/champion.rs index 8dadd9b..ccc2fcd 100644 --- a/src/shared/champion.rs +++ b/src/shared/champion.rs @@ -31,6 +31,7 @@ impl Champion { match self { Champion::Meele => match ability_slot { AbilitySlot::Q => Ability::Directional(DirectionalAbility::Dash), + AbilitySlot::W => Ability::Directional(DirectionalAbility::Pull), AbilitySlot::G => Ability::Activated(ActivatedAbility::Speed), _ => Ability::Targeted(TargetedAbility::MeeleAttack), }, |