From d6d593adc367e33cce3e93052b3df797c46bf0cc Mon Sep 17 00:00:00 2001 From: SkyratBot <59378654+SkyratBot@users.noreply.github.com> Date: Tue, 17 May 2022 04:57:24 +0200 Subject: [PATCH] [MIRROR] Change drunk blur effect to scale based on intoxication [MDB IGNORE] (#13648) * Change drunk blur effect to scale by intoxication (#66961) * Change drunk blur effect to scale based on intoxication Co-authored-by: Tim --- code/datums/status_effects/debuffs/drunk.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/datums/status_effects/debuffs/drunk.dm b/code/datums/status_effects/debuffs/drunk.dm index b6e4f058a09..7a7192d8a83 100644 --- a/code/datums/status_effects/debuffs/drunk.dm +++ b/code/datums/status_effects/debuffs/drunk.dm @@ -184,7 +184,7 @@ // Over 71, we will constantly have blurry eyes if(drunk_value >= 71) - owner.blur_eyes(5) + owner.blur_eyes(drunk_value - 70) // Over 81, we will gain constant toxloss if(drunk_value >= 81)