Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[MIRROR] fixes twitch exploit #5153

Merged
merged 2 commits into from
Nov 6, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Loading