Skip to content

Commit 324db69

Browse files
Merge pull request NebulaSS13#5235 from NebulaSS13/stable
Updating dev from stable.
2 parents 6ffb307 + d8086c8 commit 324db69

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

code/modules/species/species.dm

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -591,7 +591,7 @@ var/global/const/DEFAULT_SPECIES_HEALTH = 200
591591
return
592592

593593
var/randn = rand(1, 100) - skill_mod + state_mod
594-
if(!target.can_slip() && randn <= 25)
594+
if(target.can_slip() && randn <= 25)
595595
var/armor_check = 100 * target.get_blocked_ratio(affecting, BRUTE, damage = 20)
596596
target.apply_effect(push_mod, WEAKEN, armor_check)
597597
playsound(target.loc, 'sound/weapons/thudswoosh.ogg', 50, 1, -1)

0 commit comments

Comments
 (0)