Skip to content

Commit

Permalink
Update code/modules/ventcrawl/ventcrawl_atmospherics.dm
Browse files Browse the repository at this point in the history
Co-authored-by: SuhEugene <[email protected]>
  • Loading branch information
LordNest and SuhEugene authored Jan 28, 2024
1 parent 584dd67 commit 8437742
Showing 1 changed file with 3 additions and 4 deletions.
7 changes: 3 additions & 4 deletions code/modules/ventcrawl/ventcrawl_atmospherics.dm
Original file line number Diff line number Diff line change
Expand Up @@ -20,11 +20,10 @@
/obj/machinery/atmospherics/relaymove(mob/living/user, direction)
if(user.loc != src || !(direction & initialize_directions)) //can't go in a way we aren't connecting to
return
// [SIERRA-EDIT] - SSINPUT
// ventcrawl_to(user,findConnecting(direction),direction) // SIERRA-EDIT - ORIGINAL
// [SIERRA-ADD] - SSINPUT
direction &= ~(direction & ~initialize_directions)
ventcrawl_to(user,findConnecting(direction), direction)
// [SIERRA-EDIT] - SSINPUT
// [SIERRA-ADD]
ventcrawl_to(user,findConnecting(direction),direction)

/obj/machinery/atmospherics/proc/ventcrawl_to(mob/living/user, obj/machinery/atmospherics/target_move, direction)
if(target_move)
Expand Down

0 comments on commit 8437742

Please sign in to comment.