From 42611cda49b4efbf9cd9ea71a0e446719dd904dc Mon Sep 17 00:00:00 2001 From: Alphas00 <154434082+Alphas00@users.noreply.github.com> Date: Thu, 6 Jun 2024 13:04:13 +0200 Subject: [PATCH] Fatness Hiding guide comment --- GainStation13/code/mechanics/fatness.dm | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/GainStation13/code/mechanics/fatness.dm b/GainStation13/code/mechanics/fatness.dm index 608f8ee4..c41a0c5c 100644 --- a/GainStation13/code/mechanics/fatness.dm +++ b/GainStation13/code/mechanics/fatness.dm @@ -101,6 +101,14 @@ return TRUE + // THE FATNESS HIDING GUIDE!!! + // HOW 2 FATNESS HIDE + //Step 1) Grab a thing that will add or reduce fatness! + //Step 2) Give it a character.hider_add(src) and a character.hider_remove(src) depending on the conditions you want it to meet for which it will add or remove itself from messing with a character's fatness! + //Step 3) Give it a proc/fat_hide([character argument]), with a return that will give the amount to shift that character's fatness by! + //Step 4) There is no step 4, you did it bucko! + //Wanna see an example? Search for /obj/item/bluespace_belt !!! + /mob/living/carbon/proc/hider_add(hide_source) if(!(hide_source in fat_hiders)) fat_hiders += hide_source