Skip to content

Commit

Permalink
aa (#8376)
Browse files Browse the repository at this point in the history
  • Loading branch information
MLGTASTICa authored Nov 25, 2023
1 parent c2d2165 commit d75bd7c
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions code/game/objects/structures/railing.dm
Original file line number Diff line number Diff line change
Expand Up @@ -344,7 +344,7 @@
else
attack_hand(M)

/obj/structure/railing/do_climb(var/mob/living/user)
/obj/structure/railing/do_climb(mob/living/user)
if(!can_climb(user))
return

Expand All @@ -367,11 +367,11 @@
return

if(get_turf(user) == get_turf(src))
usr.forceMove(get_step(src, src.dir))
user.forceMove(get_step(src, src.dir))
else
usr.forceMove(get_turf(src))
user.forceMove(get_turf(src))

usr.visible_message(SPAN_WARNING("[user] climbed over \the [src]!"))
user.visible_message(SPAN_WARNING("[user] climbed over \the [src]!"))
if(!anchored) take_damage(maxHealth) // Fatboy
climbers -= user

Expand Down

0 comments on commit d75bd7c

Please sign in to comment.