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


🆑 Melbert
fix: Lipoplasty is An Option again
/🆑
This commit is contained in:
MrMelbert
2024-02-11 14:50:45 +01:00
committed by GitHub
parent df54a6dce1
commit e09d4825a0
+1 -1
View File
@@ -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 ..()