From b300816edc680dcf015b82260a2ac5b4e6d5eaf5 Mon Sep 17 00:00:00 2001
From: nullspace-industries
<57872710+nullspace-industries@users.noreply.github.com>
Date: Sat, 12 Apr 2025 22:56:30 +0100
Subject: [PATCH] APC nutrition tweaks
---
code/modules/surgery/organs/augments_arms.dm | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/code/modules/surgery/organs/augments_arms.dm b/code/modules/surgery/organs/augments_arms.dm
index a99b6a926e..646adc8d52 100644
--- a/code/modules/surgery/organs/augments_arms.dm
+++ b/code/modules/surgery/organs/augments_arms.dm
@@ -378,7 +378,7 @@
A.cell.use(A.cell.charge)
to_chat(H, "You siphon off as much as [A] can spare.")
break
- if(H.nutrition > NUTRITION_LEVEL_WELL_FED)
+ if(H.nutrition > NUTRITION_LEVEL_FAT) //GS13 edit; I considered uncapped but it drains APCs and fattens stupid fast. could be fun uncapped but speed would need tweaking
to_chat(H, "You are now fully charged.")
break
in_use = FALSE
@@ -397,7 +397,7 @@
C.use(siphoned_charge)
do_sparks(1, FALSE, C)
H.adjust_nutrition(siphoned_charge / 100) //Less efficient on a pure power basis than APC recharge. Still a very viable way of gaining nutrition. (100 nutrition / base 10k cell)
- if(H.nutrition > NUTRITION_LEVEL_WELL_FED)
+ if(H.nutrition > NUTRITION_LEVEL_FAT) //GS13 edit, as above
to_chat(H, "You are now fully charged.")
break
in_use = FALSE