Skip to content

Commit

Permalink
[MIRROR] fixes twitch exploit (#5153)
Browse files Browse the repository at this point in the history
* fixes twitch exploit (#4564)

* [MIRROR] fixes twitch exploit

---------

Co-authored-by: OrbisAnima <[email protected]>
Co-authored-by: StealsThePRs <[email protected]>
  • Loading branch information
3 people authored Nov 6, 2024
1 parent bb3273b commit 27f2028
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down Expand Up @@ -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

Expand Down Expand Up @@ -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
Expand Down

0 comments on commit 27f2028

Please sign in to comment.