Skip to content

Commit

Permalink
corrects the delay
Browse files Browse the repository at this point in the history
  • Loading branch information
uuuuhuuuu committed Jul 29, 2024
1 parent 80d98b5 commit ac758a0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion code/game/objects/structures/barricade/handrail.dm
Original file line number Diff line number Diff line change
Expand Up @@ -52,9 +52,9 @@
if(ismob(movable) && autoclimb)
var/mob/living/climber = movable
if(climber.a_intent == INTENT_HARM)
climber.client?.move_delay += 3 DECISECONDS
var/climbed = do_climb(climber)
if(climbed)
climber.client?.move_delay += 3 DECISECONDS
if(prob(25))
if(ishuman(climber))
var/mob/living/carbon/human/human = climber
Expand Down

0 comments on commit ac758a0

Please sign in to comment.