Skip to content

Commit

Permalink
ughhhhh
Browse files Browse the repository at this point in the history
  • Loading branch information
doom committed Dec 27, 2023
1 parent bbb5a0a commit b9c686d
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions code/game/machinery/doors/firedoor.dm
Original file line number Diff line number Diff line change
Expand Up @@ -54,11 +54,11 @@
A.all_doors.Add(src)
areas_added = list(A)

for(var/direction in GLOB.cardinals)
A = get_area(get_step(src,direction))
if(istype(A) && !(A in areas_added))
A.all_doors.Add(src)
areas_added += A
// for(var/direction in GLOB.cardinals) // why are even adding adjacent doors?!
// A = get_area(get_step(src,direction))
// if(istype(A) && !(A in areas_added))
// A.all_doors.Add(src)
// areas_added += A

/obj/structure/machinery/door/firedoor/Destroy()
for(var/area/A in areas_added)
Expand Down

0 comments on commit b9c686d

Please sign in to comment.