From d4c30533726293c611e1fb8f9c87adf58cb3ad37 Mon Sep 17 00:00:00 2001 From: cib Date: Thu, 29 Dec 2011 16:28:08 -0800 Subject: [PATCH 1/2] Increased the chance of getting infected significantly, with the current system it's too low. --- code/WorkInProgress/virus2/base.dm | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/code/WorkInProgress/virus2/base.dm b/code/WorkInProgress/virus2/base.dm index 598ee2d4f84..7cc2c105dfc 100644 --- a/code/WorkInProgress/virus2/base.dm +++ b/code/WorkInProgress/virus2/base.dm @@ -104,7 +104,6 @@ if(!M.virus2) M.virus2 = new /datum/disease2/disease M.virus2.makerandom() - M.virus2.infectionchance = 1 /proc/infect_mob_random_greater(var/mob/living/carbon/M) if(!M.virus2) @@ -154,7 +153,7 @@ holder.getrandomeffect_lesser() effects += holder uniqueID = rand(0,10000) - infectionchance = rand(1,10) + infectionchance = rand(4,10) // pick 2 antigens antigen |= text2num(pick(ANTIGENS)) antigen |= text2num(pick(ANTIGENS)) From d8ec1ae26b3b8d2ff3f8a1e1dc49b87935e395d3 Mon Sep 17 00:00:00 2001 From: cib Date: Thu, 29 Dec 2011 22:09:36 -0800 Subject: [PATCH 2/2] Fixed traumatic shock breaking cryo. --- code/modules/mob/living/carbon/human/life.dm | 1 - 1 file changed, 1 deletion(-) diff --git a/code/modules/mob/living/carbon/human/life.dm b/code/modules/mob/living/carbon/human/life.dm index 59127f887c5..c759807ff72 100644 --- a/code/modules/mob/living/carbon/human/life.dm +++ b/code/modules/mob/living/carbon/human/life.dm @@ -1084,7 +1084,6 @@ if(shock_stage == 30) emote("me",1,"is having trouble keeping their eyes open.") eye_blurry = max(2, eye_blurry) stuttering = max(stuttering, 5) - bodytemperature = 313.15 // high fever // pain messages if(shock_stage == 10) src << ""+pick("It hurts so much!", "You really need some painkillers..", "Dear god, the pain!")