Skip to content

Commit

Permalink
retypes
Browse files Browse the repository at this point in the history
  • Loading branch information
uuuuhuuuu committed Jul 28, 2024
1 parent 7140fd6 commit e317454
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion code/game/objects/structures/barricade/handrail.dm
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,8 @@
climber.client?.move_delay += 3 DECISECONDS
if(prob(25))
if(ishuman(climber))
climber.apply_damage(15,BRUTE,no_limb_loss = TRUE)
var/mob/living/carbon/human/human = climber
human.apply_damage(15,BRUTE,no_limb_loss = TRUE)
else
climber.apply_damage(15,BRUTE)
climber.visible_message(SPAN_WARNING("You hit yourself as you vault over the [src]"))
Expand Down

0 comments on commit e317454

Please sign in to comment.