Skip to content

Commit

Permalink
hotfix limping (#463)
Browse files Browse the repository at this point in the history
  • Loading branch information
Kapu1178 authored Aug 4, 2023
1 parent 02b552a commit f0b202d
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions code/datums/status_effects/wound_effects.dm
Original file line number Diff line number Diff line change
Expand Up @@ -114,8 +114,8 @@
C.remove_status_effect(src)
return

slowdown_left = 0
slowdown_right = 0
slowdown_left = 1
slowdown_right = 1
limp_chance_left = 0
limp_chance_right = 0

Expand All @@ -128,7 +128,7 @@
limp_chance_right = 100

// this handles losing your leg with the limp and the other one being in good shape as well
if(!slowdown_left && !slowdown_right)
if(slowdown_left + slowdown_right == 2)
C.remove_status_effect(src)
return

Expand Down

0 comments on commit f0b202d

Please sign in to comment.