Update fatness.dm

This commit is contained in:
Pinta
2023-02-19 17:05:52 -05:00
parent e4ac1a0bb6
commit ebff24398b
+3
View File
@@ -28,6 +28,9 @@
fatness += amount_to_change
fatness = max(fatness, MINIMUM_FATNESS_LEVEL) //It would be a little silly if someone got negative fat.
if(client.prefs.max_weight)
fatness = min(fatness, (client.prefs.max_weight - 1))
return TRUE