From 734ec1d3869b7dd1a708e45a6296444ec946be17 Mon Sep 17 00:00:00 2001 From: Adam Whitehurst Date: Sun, 30 May 2021 13:39:18 -0700 Subject: [PATCH] refactor: BuffKind::Frozen comment --- common/src/comp/buff.rs | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/common/src/comp/buff.rs b/common/src/comp/buff.rs index bc7d310896..a314561611 100644 --- a/common/src/comp/buff.rs +++ b/common/src/comp/buff.rs @@ -62,7 +62,10 @@ pub enum BuffKind { /// Strength scales the movement speed debuff non-linearly. 0.5 is 50% /// speed, 1.0 is 33% speed. Bleeding is at 10x the value of the strength. Crippled, - /// Prevents actions + /// Slows movement and attack speed. + /// Strength scales the attack speed debuff non-linearly. 0.5 is ~50% + /// speed, 1.0 is 33% speed. Movement speed debuff is scaled to be slightly + /// smaller than attack speed debuff. Both are limited to a minimum of 0.1 Frozen, }