From 416d473d822c65efc6bfb9f36a6fd8cf8364656c Mon Sep 17 00:00:00 2001 From: Hopek Date: Sat, 7 Mar 2020 10:21:18 -0600 Subject: [PATCH] Nicotine addiction no longer drops items --- .../reagents/chemistry/reagents/drug_reagents.dm | 12 ------------ 1 file changed, 12 deletions(-) diff --git a/code/modules/reagents/chemistry/reagents/drug_reagents.dm b/code/modules/reagents/chemistry/reagents/drug_reagents.dm index 0f3ac66e27b0..aeb17ba063c4 100644 --- a/code/modules/reagents/chemistry/reagents/drug_reagents.dm +++ b/code/modules/reagents/chemistry/reagents/drug_reagents.dm @@ -67,35 +67,23 @@ /datum/reagent/drug/nicotine/addiction_act_stage1(mob/living/M) if(prob(5) && iscarbon(M)) M.Jitter(10) - var/obj/item/I = M.get_active_held_item() - if(I && M.dropItemToGround(I)) - to_chat(M, "Your hands spaz out and you drop what you were holding!") ..() /datum/reagent/drug/nicotine/addiction_act_stage2(mob/living/M) if(prob(20) && iscarbon(M)) M.Jitter(10) - var/obj/item/I = M.get_active_held_item() - if(I && M.dropItemToGround(I)) - to_chat(M, "Your hands spaz out and you drop what you were holding!") ..() . = 1 /datum/reagent/drug/nicotine/addiction_act_stage3(mob/living/M) if(prob(20) && iscarbon(M)) M.Jitter(10) - var/obj/item/I = M.get_active_held_item() - if(I && M.dropItemToGround(I)) - to_chat(M, "Your hands spaz out and you drop what you were holding!") ..() . = 1 /datum/reagent/drug/nicotine/addiction_act_stage4(mob/living/M) if(prob(40) && iscarbon(M)) M.Jitter(10) - var/obj/item/I = M.get_active_held_item() - if(I && M.dropItemToGround(I)) - to_chat(M, "Your hands spaz out and you drop what you were holding!") ..() . = 1