From 0e7ad2e4d580ab875c7a1dbd4a15ec7663eb434f Mon Sep 17 00:00:00 2001 From: ZomgPonies Date: Sun, 8 Jun 2014 23:00:57 -0400 Subject: [PATCH] Addictiveness fix --- code/modules/reagents/Chemistry-Reagents.dm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/code/modules/reagents/Chemistry-Reagents.dm b/code/modules/reagents/Chemistry-Reagents.dm index 7adf35582b9..4978cae2c5b 100644 --- a/code/modules/reagents/Chemistry-Reagents.dm +++ b/code/modules/reagents/Chemistry-Reagents.dm @@ -68,10 +68,10 @@ datum if(method == INGEST) - if(prob(1 * addictiveness)) + if(prob(1 * self.addictiveness)) if(prob(1 * volume)) var/datum/disease/addiction/A - A.addicted_to = src + A.addicted_to = self M.contract_disease(new A(0),1) return 1