Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion code/game/turfs/open_space.dm
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,8 @@ GLOBAL_DATUM_INIT(openspace_backdrop_one_for_all, /atom/movable/openspace_backdr
attack_hand(user)

/turf/open_space/attack_hand(mob/user)
climb_down(user)
user.move_intentionally = TRUE
Enter(user)

/turf/open_space/Entered(atom/movable/entered_movable, atom/old_loc)
. = ..()
Expand Down
1 change: 1 addition & 0 deletions code/game/turfs/turf.dm
Original file line number Diff line number Diff line change
Expand Up @@ -345,6 +345,7 @@
return FALSE

if(mover.move_intentionally && istype(src, /turf/open_space) && istype(mover,/mob/living))
mover.move_intentionally = FALSE
var/turf/open_space/space = src
var/mob/living/climber = mover
if(climber.a_intent == INTENT_HARM)
Expand Down
Loading