Skip to content

Commit

Permalink
Скосплеим Валлата
Browse files Browse the repository at this point in the history
Я потому что не совсем уверен, куда именно это пихать
  • Loading branch information
LordNest committed Jan 27, 2024
1 parent 3770d0f commit 8967793
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion code/modules/ventcrawl/ventcrawl_atmospherics.dm
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,11 @@
/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
ventcrawl_to(user,findConnecting(direction),direction)
// [SIERRA-EDIT] - SSINPUT
// ventcrawl_to(user,findConnecting(direction),direction) // SIERRA-EDIT - ORIGINAL
direction &= ~(direction & ~initialize_directions)
ventcrawl_to(user,findConnecting(direction), direction)
// [SIERRA-EDIT] - SSINPUT

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

0 comments on commit 8967793

Please sign in to comment.