From f52d97ac5db2ecd69e143c83fa3727b911c5beff Mon Sep 17 00:00:00 2001 From: Razgriz Date: Wed, 28 Dec 2022 16:19:55 -0700 Subject: [PATCH] Recharging device cells recharge speed tweak (#5474) * Recharging device cells recharge speed tweak Halves them * Update device_cells.dm --- modular_chomp/code/modules/power/cells/device_cells.dm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/modular_chomp/code/modules/power/cells/device_cells.dm b/modular_chomp/code/modules/power/cells/device_cells.dm index 3621572bfa..29aff5fe8f 100644 --- a/modular_chomp/code/modules/power/cells/device_cells.dm +++ b/modular_chomp/code/modules/power/cells/device_cells.dm @@ -125,7 +125,7 @@ icon_state = "meb_m_nu" matter = list(MAT_STEEL = 400, MAT_GLASS = 80) self_recharge = TRUE - charge_amount = 120 + charge_amount = 60 //2.5% charge_delay = 75 origin_tech = list(TECH_POWER = 5, TECH_PRECURSOR = 1) @@ -225,7 +225,7 @@ /obj/item/weapon/cell/device/weapon/recharge/alien/omni name = "omni weapon power cell" desc = "A mix between alien technology and phoron tech. Seems to fit in almost any cell slot..." - charge_amount = 240 // 5%. + charge_amount = 120 // 2.5%. maxcharge = 4800 charge_delay = 50 origin_tech = list(TECH_POWER = 8, TECH_ENGINEERING = 6, TECH_PHORON = 6, TECH_ARCANE = 2, TECH_PRECURSOR = 2)