From 9ef6a892dbaf16666ea8b79fe939463159d16ff9 Mon Sep 17 00:00:00 2001 From: necromanceranne <40847847+necromanceranne@users.noreply.github.com> Date: Sun, 14 Dec 2025 12:56:17 +1100 Subject: [PATCH] Laser pistols no longer instantly recharge in chargers (#94358) ## About The Pull Request Does the changes that were in https://github.com/tgstation/tgstation/pull/94353 before the PR was salted and closed. fixes https://github.com/tgstation/tgstation/issues/94332 ## Why It's Good For The Game I would have merged that pr but oh well. ## Changelog :cl: fix: Fixes laser pistol charging instantly. /:cl: --- code/modules/power/cell.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/modules/power/cell.dm b/code/modules/power/cell.dm index 8430b7b2d1d..f50ee79d874 100644 --- a/code/modules/power/cell.dm +++ b/code/modules/power/cell.dm @@ -99,7 +99,7 @@ /obj/item/stock_parts/power_store/cell/laser_pistol name = "laser pistol power cell" - chargerate = STANDARD_CELL_RATE * 3 + chargerate = STANDARD_CELL_RATE * 0.15 /obj/item/stock_parts/power_store/cell/ninja name = "black power cell"