From aecf06028ea79a9ec07e42193ec328d7c46067ba Mon Sep 17 00:00:00 2001 From: sick-trigger Date: Thu, 5 Jun 2014 16:54:45 +1000 Subject: [PATCH] Painkillers leave body correctly Tramadol, paracetamol and oxy will now leave a mob's body. Fixes #5150. --- code/modules/reagents/Chemistry-Reagents.dm | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/code/modules/reagents/Chemistry-Reagents.dm b/code/modules/reagents/Chemistry-Reagents.dm index a42f451649..70e442a73d 100644 --- a/code/modules/reagents/Chemistry-Reagents.dm +++ b/code/modules/reagents/Chemistry-Reagents.dm @@ -778,6 +778,8 @@ datum on_mob_life(var/mob/living/M as mob) if (volume > overdose) M.hallucination = max(M.hallucination, 2) + ..() + return tramadol name = "Tramadol" @@ -790,6 +792,8 @@ datum on_mob_life(var/mob/living/M as mob) if (volume > overdose) M.hallucination = max(M.hallucination, 2) + ..() + return oxycodone name = "Oxycodone" @@ -803,6 +807,8 @@ datum if (volume > overdose) M.druggy = max(M.druggy, 10) M.hallucination = max(M.hallucination, 3) + ..() + return virus_food