From d71a532489cc37c315b4fcfd42e261a734de119d Mon Sep 17 00:00:00 2001 From: SatinIsle <98125273+SatinIsle@users.noreply.github.com> Date: Fri, 20 Jun 2025 21:00:03 +0100 Subject: [PATCH] Made backup batteries a bit more useful (#17889) Changed the level that you can use backup batteries as a synth to 150 nutrition, and it also gives you 150 nutrition back. This means you can use it as soon as you reach slowdown levels of hunger and it fills you up a decent amount. Previously you had to wait until you went down to 100 nutrition and it would only fill up to 200 max, which means you'd be back in red soon after. --- code/modules/power/cells/power_cells.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/modules/power/cells/power_cells.dm b/code/modules/power/cells/power_cells.dm index ffcc388833..b6d3ccccec 100644 --- a/code/modules/power/cells/power_cells.dm +++ b/code/modules/power/cells/power_cells.dm @@ -219,7 +219,7 @@ icon = 'icons/obj/power_cells.dmi' icon_state = "backup" w_class = ITEMSIZE_SMALL - var/amount = 100 + var/amount = 150 var/used = FALSE /obj/item/fbp_backup_cell/Initialize(mapload)