From 6df744b0ff263bf40a1969b341fd9355ceb2936a Mon Sep 17 00:00:00 2001
From: Sam <samuelkeiffer@gmail.com>
Date: Wed, 13 Oct 2021 09:16:26 -0400
Subject: [PATCH] Fix block energy cost being multiplied by 10 and also
 slightly reduce it.

---
 common/src/comp/ability.rs | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/common/src/comp/ability.rs b/common/src/comp/ability.rs
index 1669418d67..b25f345d86 100644
--- a/common/src/comp/ability.rs
+++ b/common/src/comp/ability.rs
@@ -386,11 +386,11 @@ impl CharacterAbility {
 
     pub fn default_block() -> CharacterAbility {
         CharacterAbility::BasicBlock {
-            buildup_duration: 0.35,
-            recover_duration: 0.3,
+            buildup_duration: 0.25,
+            recover_duration: 0.2,
             max_angle: 60.0,
             block_strength: 0.5,
-            energy_cost: 50.0,
+            energy_cost: 2.5,
         }
     }