Added Changelog

This commit is contained in:
Nils Ascheuer 2023-01-18 14:40:21 +01:00
parent f9e1aca045
commit 21f417dbef
2 changed files with 1 additions and 1 deletions

View File

@ -9,6 +9,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
### Added ### Added
- Command to toggle experimental shaders. - Command to toggle experimental shaders.
- Faster Energy Regeneration while sitting.
### Changed ### Changed
- Bats move slower and use a simple proportional controller to maintain altitude - Bats move slower and use a simple proportional controller to maintain altitude

View File

@ -190,7 +190,6 @@ impl<'a> System<'a> for Sys {
poise.regen_rate = (poise.regen_rate + POISE_REGEN_ACCEL * dt).min(10.0); poise.regen_rate = (poise.regen_rate + POISE_REGEN_ACCEL * dt).min(10.0);
} }
}, },
// Ability use does not regen and sets the rate back to zero. // Ability use does not regen and sets the rate back to zero.
CharacterState::BasicMelee(_) CharacterState::BasicMelee(_)
| CharacterState::DashMelee(_) | CharacterState::DashMelee(_)