From bcda944af98e6929fffed0d7bdc65ffb21e9483b Mon Sep 17 00:00:00 2001 From: Sam Date: Sun, 30 Aug 2020 14:48:00 -0500 Subject: [PATCH] Fixed energy cost for playtesting purposes. --- common/src/comp/inventory/item/tool.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/common/src/comp/inventory/item/tool.rs b/common/src/comp/inventory/item/tool.rs index de2e9c80c5..dafe16ca76 100644 --- a/common/src/comp/inventory/item/tool.rs +++ b/common/src/comp/inventory/item/tool.rs @@ -314,7 +314,7 @@ impl Tool { energy_regen: 120, }, BasicRanged { - energy_cost: 0, + energy_cost: 400, holdable: true, prepare_duration: Duration::from_millis(800), recover_duration: Duration::from_millis(50),