From ff5ac9b8a309814a7aacce08118704d2826d0d94 Mon Sep 17 00:00:00 2001 From: ZomgPonies Date: Mon, 9 Jun 2014 01:08:30 -0400 Subject: [PATCH] Moar addiction fixuns --- code/modules/reagents/Chemistry-Reagents.dm | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/code/modules/reagents/Chemistry-Reagents.dm b/code/modules/reagents/Chemistry-Reagents.dm index 4978cae2c5b..b7f0ce3cd0c 100644 --- a/code/modules/reagents/Chemistry-Reagents.dm +++ b/code/modules/reagents/Chemistry-Reagents.dm @@ -69,10 +69,10 @@ datum if(method == INGEST) if(prob(1 * self.addictiveness)) - if(prob(1 * volume)) - var/datum/disease/addiction/A + if(prob(5 * volume)) + var/datum/disease/addiction/A = new /datum/disease/addiction A.addicted_to = self - M.contract_disease(new A(0),1) + M.contract_disease(A,0,1) return 1 reaction_obj(var/obj/O, var/volume) //By default we transfer a small part of the reagent to the object