climbing tweaks, fix triple strike overflow, fix Last<CharacterState>

not registered
This commit is contained in:
Imbris
2020-03-25 01:37:09 -04:00
parent 6ba158b7e1
commit 3889ec7292
6 changed files with 73 additions and 64 deletions

View File

@ -182,7 +182,7 @@ impl From<&CharacterAbility> for CharacterState {
CharacterAbility::TripleStrike { base_damage } => {
CharacterState::TripleStrike(triple_strike::Data {
base_damage: *base_damage,
stage: 0,
stage: triple_strike::Stage::First,
stage_exhausted: false,
stage_time_active: Duration::default(),
should_transition: true,