From 4a39d9b53bd262d006913582e7af0080d9d97212 Mon Sep 17 00:00:00 2001 From: cib Date: Thu, 31 Jan 2013 17:56:44 +0100 Subject: [PATCH] Fixes for gamebreaking metabolism rates - A single chili doesn't kill anymore - Chloral hydrate no longer kills in amounts of 2 units --- code/modules/reagents/Chemistry-Reagents.dm | 6 ++++-- html/changelog.html | 9 +++++++++ 2 files changed, 13 insertions(+), 2 deletions(-) diff --git a/code/modules/reagents/Chemistry-Reagents.dm b/code/modules/reagents/Chemistry-Reagents.dm index d7558434f8d..7d4c8ac0253 100644 --- a/code/modules/reagents/Chemistry-Reagents.dm +++ b/code/modules/reagents/Chemistry-Reagents.dm @@ -1721,7 +1721,7 @@ datum M.adjustToxLoss((data - 50) * REAGENTS_EFFECT_MULTIPLIER) // Sleep toxins should always be consumed pretty fast - holder.remove_reagent(src.id, 0.1) + holder.remove_reagent(src.id, 0.4) ..() return @@ -1746,7 +1746,7 @@ datum M.adjustToxLoss(data - 50) data++ // Sleep toxins should always be consumed pretty fast - holder.remove_reagent(src.id, 0.1) + holder.remove_reagent(src.id, 0.4) ..() return @@ -2004,6 +2004,7 @@ datum M.bodytemperature += 15 * TEMPERATURE_DAMAGE_COEFFICIENT if(istype(M, /mob/living/carbon/metroid)) M.bodytemperature += rand(15,20) + holder.remove_reagent(src.id, FOOD_METABOLISM) data++ ..() return @@ -2092,6 +2093,7 @@ datum if(istype(M, /mob/living/carbon/metroid)) M.bodytemperature -= rand(15,20) data++ + holder.remove_reagent(src.id, FOOD_METABOLISM) ..() return diff --git a/html/changelog.html b/html/changelog.html index e83e90c7c27..c3b6698a484 100644 --- a/html/changelog.html +++ b/html/changelog.html @@ -59,6 +59,15 @@ should be listed in the changelog upon commit though. Thanks. --> +
+

1/31/2013

+

CIB updated:

+ +
+

1/13/2013

GauHelldragon updated: