Remove wield requirement to swap loadout

This commit is contained in:
scott-c
2020-06-17 21:34:58 +08:00
parent 71a49b0e22
commit 88d68df2c0
3 changed files with 3 additions and 20 deletions

View File

@ -76,13 +76,6 @@ impl CharacterState {
}
}
pub fn can_swap(&self) -> bool {
match self {
CharacterState::Wielding => true,
_ => false,
}
}
pub fn is_attack(&self) -> bool {
match self {
CharacterState::BasicMelee(_)