From 14166acb461e7f83c2fe27ebc9d655d6bae25a10 Mon Sep 17 00:00:00 2001 From: Avi Weinstock Date: Sat, 20 Feb 2021 19:19:26 -0500 Subject: [PATCH] Change the speed floor to `0.1` (avoiding a division by zero in modular weapons accidentally buffed the Twitching Root). --- common/src/comp/inventory/item/tool.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/common/src/comp/inventory/item/tool.rs b/common/src/comp/inventory/item/tool.rs index 9aaf87b78f..2d94ab70d5 100644 --- a/common/src/comp/inventory/item/tool.rs +++ b/common/src/comp/inventory/item/tool.rs @@ -93,8 +93,8 @@ impl StatKind { // TODO: add stats from enhancement slots } // if an item has 0.0 speed, that panics due to being infinite duration, so - // enforce speed >= 0.5 - stats.speed = stats.speed.max(0.5); + // enforce speed >= 0.1 + stats.speed = stats.speed.max(0.1); stats } }