From 6eb07a41db26773ff5ddc677cb108894765fe9fd Mon Sep 17 00:00:00 2001 From: Name Date: Thu, 31 Jan 2019 18:04:28 -0500 Subject: [PATCH] Fixes it --- code/modules/reagents/chemistry/holder.dm | 2 ++ 1 file changed, 2 insertions(+) diff --git a/code/modules/reagents/chemistry/holder.dm b/code/modules/reagents/chemistry/holder.dm index 39f4981c95f..186bb15da9e 100644 --- a/code/modules/reagents/chemistry/holder.dm +++ b/code/modules/reagents/chemistry/holder.dm @@ -319,6 +319,8 @@ to_chat(C, "You feel like you've gotten over your need for [R.name].") SEND_SIGNAL(C, COMSIG_CLEAR_MOOD_EVENT, "[R.id]_addiction") cached_addictions.Remove(R) + else + SEND_SIGNAL(C, COMSIG_CLEAR_MOOD_EVENT, "[R.id]_overdose") addiction_tick++ if(C && need_mob_update) //some of the metabolized reagents had effects on the mob that requires some updates. C.updatehealth()