Skip to content

Commit

Permalink
Update code/game/machinery/doors/multi_tile.dm
Browse files Browse the repository at this point in the history
Co-authored-by: harryob <[email protected]>
  • Loading branch information
mullenpaul and harryob authored Oct 22, 2023
1 parent fffad4c commit 145600c
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions code/game/machinery/doors/multi_tile.dm
Original file line number Diff line number Diff line change
Expand Up @@ -373,9 +373,9 @@
if(found_turf)
. += list(found_turf)
if(dir == EAST)
var/turf/T = locate(x + i, y, z)
if(T)
. += list(T)
var/turf/found_turf = locate(x + i, y, z)
if(found_turf)
. += list(found_turf)
if(dir == WEST)
var/turf/found_turf = locate(x - i, y, z)
if(found_turf)
Expand Down

0 comments on commit 145600c

Please sign in to comment.