From c77781d2b2c67200a49bef079b43d24c96f7c4a3 Mon Sep 17 00:00:00 2001 From: OrbisAnima Date: Wed, 6 Nov 2024 00:03:08 -0300 Subject: [PATCH 1/2] fixes twitch exploit (#4564) --- .../modules/deforest_medical_items/code/chemicals/twitch.dm | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/modular_nova/modules/deforest_medical_items/code/chemicals/twitch.dm b/modular_nova/modules/deforest_medical_items/code/chemicals/twitch.dm index 8d6b2ca392c..352b1d8939b 100644 --- a/modular_nova/modules/deforest_medical_items/code/chemicals/twitch.dm +++ b/modular_nova/modules/deforest_medical_items/code/chemicals/twitch.dm @@ -46,7 +46,7 @@ . = ..() our_guy.add_movespeed_modifier(/datum/movespeed_modifier/reagent/twitch) - our_guy.next_move_modifier -= 0.3 // For the duration of this you move and attack faster + our_guy.next_move_modifier *= 0.7 // For the duration of this you move and attack faster our_guy.sound_environment_override = SOUND_ENVIRONMENT_DIZZY @@ -76,7 +76,7 @@ . = ..() our_guy.remove_movespeed_modifier(/datum/movespeed_modifier/reagent/twitch) - our_guy.next_move_modifier += (overdosed ? 0.5 : 0.3) + our_guy.next_move_modifier /= (overdosed ? 0.49 : 0.7) our_guy.sound_environment_override = NONE @@ -174,7 +174,7 @@ RegisterSignal(our_guy, COMSIG_ATOM_PRE_BULLET_ACT, PROC_REF(dodge_bullets)) - our_guy.next_move_modifier -= 0.2 // Overdosing makes you a liiitle faster but you know has some really bad consequences + our_guy.next_move_modifier *= 0.7 // Overdosing makes you a liiitle faster but you know has some really bad consequences if(!our_guy.hud_used) return From f9be59769554ae9c622884cdc8786564fbb52fe5 Mon Sep 17 00:00:00 2001 From: StealsThePRs Date: Wed, 6 Nov 2024 06:03:36 +0300 Subject: [PATCH 2/2] [MIRROR] fixes twitch exploit