From 8dd2bb7824dea65fd74c307b2d5f9a2d104e46be Mon Sep 17 00:00:00 2001 From: "bizarre.babel@gmail.com" Date: Mon, 11 Apr 2011 01:03:36 +0000 Subject: [PATCH] Fixed cola. They all add the same number of "food," which is a rather small amount per gulp in the first place. git-svn-id: http://tgstation13.googlecode.com/svn/trunk@1435 316c924e-a436-60f5-8080-3fe189b3f50e --- code/WorkInProgress/Chemistry-Reagents.dm | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/code/WorkInProgress/Chemistry-Reagents.dm b/code/WorkInProgress/Chemistry-Reagents.dm index d00dc0c9ab5..1266f6b6897 100644 --- a/code/WorkInProgress/Chemistry-Reagents.dm +++ b/code/WorkInProgress/Chemistry-Reagents.dm @@ -1626,7 +1626,7 @@ datum M:drowsyness = max(0,M:drowsyness-5) if (M.bodytemperature > 310)//310 is the normal bodytemp. 310.055 M.bodytemperature = max(310, M.bodytemperature-5) - M:nutrition += 5 + M:nutrition += 2 ..() return @@ -1641,7 +1641,7 @@ datum if (M.bodytemperature > 310) M.bodytemperature = max(310, M.bodytemperature-5) M.make_jittery(5) - M:nutrition += 3 + M:nutrition += 2 ..() return @@ -1677,7 +1677,7 @@ datum M:drowsyness = max(0,M:drowsyness-6) if (M.bodytemperature > 310) M.bodytemperature = max(310, M.bodytemperature-5) //310 is the normal bodytemp. 310.055 - M:nutrition += 5 + M:nutrition += 2 ..() return