From 85ce3fee2e73814af467e9265dc612fd65cd3ba4 Mon Sep 17 00:00:00 2001 From: Marm <85680653+ItsMarmite@users.noreply.github.com> Date: Fri, 22 Jul 2022 16:35:02 +0100 Subject: [PATCH] Hello Peridol (#18476) Removes probability for haloperidol to make the target drowsy. Adds probabilily for haloperidol to make the target confused. Adds probability for haloperidol to give the target blurred vision. --- code/modules/reagents/chemistry/reagents/medicine.dm | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/code/modules/reagents/chemistry/reagents/medicine.dm b/code/modules/reagents/chemistry/reagents/medicine.dm index 27b6806d315..b997d573fb9 100644 --- a/code/modules/reagents/chemistry/reagents/medicine.dm +++ b/code/modules/reagents/chemistry/reagents/medicine.dm @@ -1015,8 +1015,10 @@ M.AdjustDruggy(-10 SECONDS) M.AdjustHallucinate(-5 SECONDS) M.AdjustJitter(-10 SECONDS) - if(prob(50)) - M.Drowsy(6 SECONDS) + if(prob(40)) + M.EyeBlurry(10 SECONDS) + if(prob(75)) + M.Confused(6 SECONDS) if(prob(10)) M.emote("drool") if(prob(20))