Variable name changes

Changed realfatness into fatness_real and overfatness into fatness_over
This commit is contained in:
Alphas00
2023-12-26 16:12:29 +01:00
parent b40aad939b
commit 33e3e31c28
5 changed files with 18 additions and 19 deletions
+1 -1
View File
@@ -2934,7 +2934,7 @@ GLOBAL_LIST_EMPTY(preferences_datums)
//GS13
character.fatness = starting_weight
character.realfatness = starting_weight
character.fatness_real = starting_weight
character.weight_gain_rate = wg_rate
character.weight_loss_rate = wl_rate
@@ -620,7 +620,7 @@
/datum/reagent/medicine/lipolicide/on_mob_life(mob/living/carbon/M)
if(M.nutrition <= NUTRITION_LEVEL_STARVING)
M.adjustToxLoss(1*REM, 0)
if(M.realfatness == 0)
if(M.fatness_real == 0)
M.nutrition = max(M.nutrition - 3, 0) // making the chef more valuable, one meme trap at a time
if(HAS_TRAIT(M, TRAIT_LIPOLICIDE_TOLERANCE)) //GS13 edit
M.adjust_fatness(-0.5, FATTENING_TYPE_WEIGHT_LOSS)