You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardexpand all lines: code/modules/mob/mob.dm
+1-1
Original file line number
Diff line number
Diff line change
@@ -1458,7 +1458,7 @@
1458
1458
1459
1459
///Adjust the nutrition of a mob
1460
1460
/mob/proc/adjust_nutrition(change) //Honestly FUCK the oldcoders for putting nutrition on /mob someone else can move it up because holy hell I'd have to fix SO many typechecks
1461
-
nutrition =max(0, nutrition + change)
1461
+
set_nutrition(max(0, nutrition + change))
1462
1462
1463
1463
///Force set the mob nutrition
1464
1464
/mob/proc/set_nutrition(change) //Seriously fuck you oldcoders.
0 commit comments