From 238591128c8bde1970f4585cd23412ad2798cb7c Mon Sep 17 00:00:00 2001 From: Jordan Brown Date: Fri, 16 Feb 2018 11:33:04 -0500 Subject: [PATCH 1/2] Merge pull request #35697 from praisenarsie/patch-34 Fixes addiction text --- code/modules/reagents/chemistry/reagents.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/modules/reagents/chemistry/reagents.dm b/code/modules/reagents/chemistry/reagents.dm index c8686d07f7..4ca1efa4e7 100644 --- a/code/modules/reagents/chemistry/reagents.dm +++ b/code/modules/reagents/chemistry/reagents.dm @@ -94,7 +94,7 @@ /datum/reagent/proc/addiction_act_stage1(mob/living/M) if(prob(30)) - to_chat(M, "You feel like some [name] right about now.") + to_chat(M, "You feel like having some [name] right about now.") return /datum/reagent/proc/addiction_act_stage2(mob/living/M)