XWG Normalizers tweak

XWG now stops its functions if a character is wearing a normalizing item
This commit is contained in:
Alphas00
2024-07-26 11:40:29 +02:00
parent 7208920654
commit 6ebf4cfdd2
+1 -1
View File
@@ -135,7 +135,7 @@ GLOBAL_LIST_INIT(uncapped_resize_areas, list(/area/bridge, /area/crew_quarters,
if(client?.prefs?.max_weight) //Check their prefs
fatness_over = min(fatness_over, (client?.prefs?.max_weight - 1)) //And make sure it's not above their preferred max
fatness = fatness_real + fatness_over //Then, make their current fatness the sum of their real plus/minus the calculated amount
if(client?.prefs?.weight_gain_extreme)
if(client?.prefs?.weight_gain_extreme && !normalized)
xwg_resize()
/mob/living/carbon/human/handle_breathing(times_fired)