Skip to content

Commit

Permalink
refactor: usr to user
Browse files Browse the repository at this point in the history
  • Loading branch information
xTrogwaRx authored Mar 14, 2024
1 parent 83361ef commit ecdbae0
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions code/game/objects/structures.dm
Original file line number Diff line number Diff line change
Expand Up @@ -145,7 +145,7 @@
if(!climb_check(user))
return FALSE

usr.visible_message(span_warning("[user] starts climbing onto \the [src]!"))
user.visible_message(span_warning("[user] starts climbing onto \the [src]!"))
climber = user
if(!do_after(user, 50, target = src))
climber = null
Expand All @@ -155,11 +155,11 @@
climber = null
return FALSE

usr.loc = get_turf(src)
user.loc = get_turf(src)
animate_climb(user)

if(get_turf(user) == get_turf(src))
usr.visible_message(span_warning("[user] climbs onto \the [src]!"))
user.visible_message(span_warning("[user] climbs onto \the [src]!"))

clumse_stuff(climber)
climber = null
Expand Down

0 comments on commit ecdbae0

Please sign in to comment.