From 21f417dbefc2803bd0108cc130ea777bda44d6a1 Mon Sep 17 00:00:00 2001 From: Nils Ascheuer Date: Wed, 18 Jan 2023 14:40:21 +0100 Subject: [PATCH] Added Changelog --- CHANGELOG.md | 1 + common/systems/src/stats.rs | 1 - 2 files changed, 1 insertion(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index d2e8c80f7a..6e83a9719b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -9,6 +9,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ### Added - Command to toggle experimental shaders. +- Faster Energy Regeneration while sitting. ### Changed - Bats move slower and use a simple proportional controller to maintain altitude diff --git a/common/systems/src/stats.rs b/common/systems/src/stats.rs index bf28babb63..79573b8d6d 100644 --- a/common/systems/src/stats.rs +++ b/common/systems/src/stats.rs @@ -190,7 +190,6 @@ impl<'a> System<'a> for Sys { 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. CharacterState::BasicMelee(_) | CharacterState::DashMelee(_)