From e09d4825a077c31ba01e398f7311fa69d4e4f053 Mon Sep 17 00:00:00 2001 From: MrMelbert <51863163+MrMelbert@users.noreply.github.com> Date: Sun, 11 Feb 2024 07:50:45 -0600 Subject: [PATCH] Fix Lipoplasty not existing (#81397) ## About The Pull Request Fixes #81395 Boo-womp, as they say. ![image](https://github.com/tgstation/tgstation/assets/51863163/531a1ffa-dfaf-4e0a-b8b7-ec9414514350) ## Changelog :cl: Melbert fix: Lipoplasty is An Option again /:cl: --- code/modules/surgery/lipoplasty.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/modules/surgery/lipoplasty.dm b/code/modules/surgery/lipoplasty.dm index b28d6841512..1d2e6b68381 100644 --- a/code/modules/surgery/lipoplasty.dm +++ b/code/modules/surgery/lipoplasty.dm @@ -10,7 +10,7 @@ ) /datum/surgery/lipoplasty/can_start(mob/user, mob/living/carbon/target) - if(!HAS_TRAIT(target, TRAIT_FAT) || target.nutrition >= NUTRITION_LEVEL_WELL_FED) + if(!HAS_TRAIT(target, TRAIT_FAT) || target.nutrition < NUTRITION_LEVEL_WELL_FED) return FALSE return ..()